We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
To create a circuit, you have to do this:
circ circuit_name(arg1, arg2...)->{what the function does}
circ is the circuit "declaration", and everything after the -> is interpreted as code.
circ
->
Normal circuits have 1 bit as output, but if more bits are required, use the + symbol to separate bits, like this:
+
circ circuit_name(arg1, arg2...)->{1st bit}+{2nd bit}+...