Google News
logo
Quantum Computing - Interview Questions
How to Creating a Q Sharp project in Quantum Computing?
The first thing you need to do is to create a new Q#(Q Sharp) project. This tutorial uses the environment based on Q# applications with VS Code, but you can use your preferred IDE.
 
To create a new project in Visual Studio Code :
 
* Select View -> Command Palette and select Q#: Create New Project.
* Select Standalone console application.
* Select a location to save the project, name it Qrng, and select Create Project.
* When the project is successfully created, select Open new project... in the lower right.

This generates two files : the project file, Qrng.csproj, and a Q# application template, Program.qs, that you will use to write your application.
Advertisement