11 lines
122 B
Plaintext
11 lines
122 B
Plaintext
namespace Quantum.HelloWorld
|
|
{
|
|
operation HelloWorld () : (String)
|
|
{
|
|
body
|
|
{
|
|
return ("Hello, World!");
|
|
}
|
|
}
|
|
}
|