LangStudies/Builds/Tests/9.Logical.uf

8 lines
63 B
Plaintext
Raw Normal View History

2022-07-10 22:05:33 -07:00
x && y;
x || y;
if (x && y || z)
x += 1;
if (x || y && z)
{}