BAPFS Lecture 11

This commit is contained in:
2022-07-11 01:05:33 -04:00
parent dbd84c8921
commit d34ccb04d2
4 changed files with 845 additions and 1 deletions
+7
View File
@@ -0,0 +1,7 @@
x > 0 == true;
x > 0 != false;
x + 5 > 10 == false;
x == null;
+8
View File
@@ -0,0 +1,8 @@
x && y;
x || y;
if (x && y || z)
x += 1;
if (x || y && z)
{}