microsoft/qdk

Public

mirrored from https://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
8548d11586fe2174dc46eff80c238facfe715f67

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}