LangStudies/Builds/Tests/9.Logical.letter
Ed94 0acd6ecbaf BAPFS Lecture 18
Instead of making a cli I made updates the gui to open any file.
2022-07-14 01:55:31 -04:00

8 lines
63 B
Plaintext

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