Answers for "Q# hello world"

C#
0

Q# hello world

namespace HelloQuantum {
    open Microsoft.Quantum.Canon;
    open Microsoft.Quantum.Intrinsic;
    

    @EntryPoint()
    operation SayHello() : Unit {
        Message("Hello quantum world!");
    }
}
Posted by: Guest on October-02-2020

C# Answers by Framework

Browse Popular Code Answers by Language