Q# Camp

Come back as I add more content.


Hello World!


	namespace HelloWorld
	{
	   open Microsoft.Quantum.Canon;
	   open Microsoft.Quantum.Intrinsic;

	   @EntryPoint()
	   operation SayHelloQ() : Unit
	   {
	      Message("Hello Q!");
	   }
	}