Remove support for ternary comparison operators
[fur] / examples / 17_short_circuiting.fur
diff --git a/examples/17_short_circuiting.fur b/examples/17_short_circuiting.fur
deleted file mode 100644 (file)
index f70e7b9..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-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')
-  true
-end
-
-def return_false() do
-  print('This should print exactly twice.\n')
-  false
-end
-
-0 < return_one() < 2
-0 < 0 < return_zero()
-return_true() or return_true()
-return_false() and return_false()