2018-02-26 17:26:22 -07:00

11 lines
122 B
Plaintext

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