microsoft/qdk

Public

mirrored fromhttps://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
billti/activitybar-icon

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

samples/testing/classical_values/src/ClassicalFunction.qs

5lines · modecode

1/// # Summary
2/// Returns the square of the input integer.
3function Square(x : Int) : Int {
4 x * x
5}