microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.13

Branches

Tags

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

Clone

HTTPS

Download ZIP

samples/notebooks/test_project/src/Sample.qs

11lines · modeblame

8ace0636Alex Hansen2 years ago1namespace Sample {
2operation Main() : Result {
3use q = Qubit();
4X(q);
91f754e1Scott Carda1 years ago5Std.Diagnostics.DumpMachine();
8ace0636Alex Hansen2 years ago6let r = M(q);
7Message($"The result of the measurement is {r}");
8Reset(q);
9r
10}
11}