Quantum Booleans qbool qb = both; // Superposition! Both true AND false!
qif (qb) { println("True path"); // Executes! } qelse { println("False path"); // ALSO executes! } Quantum Logic Operators // Note these are not for normal booleans &&& - Quantum AND ||| - Quantum OR !! - Quantum NOT ^^ - Quantum XOR === - Quantum EQUAL !== - Quantum NOT EQUAL |&| - Collapse OR (convert to bool) &|& - Collapse AND (convert to bool)