Created
April 18, 2018 21:03
-
-
Save NatuMyers/94674e5be509b00130b4e21d3a7f41ee to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Microsoft.Quantum.Simulation.Core; | |
using Microsoft.Quantum.Simulation.Simulators; | |
namespace Quantum.HelloQ | |
{ | |
class Driver | |
{ | |
static void Main(string[] args) | |
{ | |
using (var sim = new QuantumSimulator()) | |
{ | |
var res = Add.Run(sim, 20, 10).Result; | |
Console.WriteLine(res); | |
} | |
Console.WriteLine("Press any key to continue..."); | |
Console.ReadKey(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment