LangStudies/Builds/Tests/9.Logical.uf
2022-07-11 01:05:33 -04:00

8 lines
63 B
Plaintext

x && y;
x || y;
if (x && y || z)
x += 1;
if (x || y && z)
{}