Files
hello-world/q/qsharp/qsharp.qs
2018-08-22 01:37:32 -03:00

11 lines
122 B
Plaintext
Executable File

namespace Quantum.HelloWorld
{
operation HelloWorld () : (String)
{
body
{
return ("Hello, World!");
}
}
}