2020-05-16 01:51:08 +02:00

9 lines
96 B
Plaintext

bool x,y,z;
while !(x && y && z) do
print x,y,z;
x := x ^ (y && z);
y := y ^ z;
z := !z
od