Removed one more test using ternary comparison
authorDavid Kerkeslager <kerkeslager@gmail.com>
Sun, 31 Dec 2017 01:41:49 +0000 (20:41 -0500)
committerDavid Kerkeslager <kerkeslager@gmail.com>
Sun, 31 Dec 2017 01:41:49 +0000 (20:41 -0500)
examples/16_short_circuiting.fur
examples/16_short_circuiting.fur.stdout.txt

index f70e7b9..cb7b959 100644 (file)
@@ -1,24 +1,12 @@
-def return_zero() do
-  print('This should not print\n')
-  2
-end
-
-def return_one() do
-  print('This should only print once.\n')
-  1
-end
-
 def return_true() do
-  print('This should print exactly twice.\n')
+  print('This should print exactly once.\n')
   true
 end
 
 def return_false() do
-  print('This should print exactly twice.\n')
+  print('This should also print exactly once.\n')
   false
 end
 
-0 < return_one() < 2
-0 < 0 < return_zero()
 return_true() or return_true()
 return_false() and return_false()
index 21ff499..3c28171 100644 (file)
@@ -1,3 +1,2 @@
-This should only print once.
-This should print exactly twice.
-This should print exactly twice.
+This should print exactly once.
+This should also print exactly once.