Files
hello-world/q/qsharp/qsharp.qs
Richie Bendall ad16f6d78a Normalize printed text
Signed-off-by: Richie Bendall <richiebendall@gmail.com>
2020-03-30 04:21:52 +13:00

11 lines
120 B
Plaintext
Executable File

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