mirror of
https://github.com/Ed94/LangStudies.git
synced 2024-11-10 04:14:53 -08:00
8 lines
63 B
Plaintext
8 lines
63 B
Plaintext
x && y;
|
|
x || y;
|
|
|
|
if (x && y || z)
|
|
x += 1;
|
|
|
|
if (x || y && z)
|
|
{} |