added qsharp

This commit is contained in:
electr0sheep
2018-02-26 17:26:22 -07:00
parent cd59bd06fa
commit 9f0d2abe53
3 changed files with 30 additions and 0 deletions

10
q/qsharp/qsharp.qs Normal file
View File

@@ -0,0 +1,10 @@
namespace Quantum.HelloWorld
{
operation HelloWorld () : (String)
{
body
{
return ("Hello, World!");
}
}
}