Skip to content

Instantly share code, notes, and snippets.

@NatuMyers
Created April 18, 2018 20:56
Show Gist options
  • Save NatuMyers/d35e3b029a4999f8157c54c754ac3dcf to your computer and use it in GitHub Desktop.
Save NatuMyers/d35e3b029a4999f8157c54c754ac3dcf to your computer and use it in GitHub Desktop.
namespace Quantum.HelloQ
{
    // Import Quantum.Primitive
    open Microsoft.Quantum.Primitive;
    // Create an operation that adds two int and returns a total int
    operation Add (a : Int, b : Int): (Int)
    {
        body
        {
            return (a + b);
        }
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment