You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 12, 2024. It is now read-only.
With an end goal of supporting attributes in Q#, the compiler should first be able parse the syntax of attributes and store some information about the identifier and arguments.
For example:
@ExampleAttribute("ExampleArgument")@
operation BitFlip(target : Qubit) : Unit {
X(target);
}