summaryrefslogtreecommitdiff
path: root/files/practicum/VindtDeRedex.icl
diff options
context:
space:
mode:
Diffstat (limited to 'files/practicum/VindtDeRedex.icl')
-rw-r--r--files/practicum/VindtDeRedex.icl15
1 files changed, 15 insertions, 0 deletions
diff --git a/files/practicum/VindtDeRedex.icl b/files/practicum/VindtDeRedex.icl
new file mode 100644
index 0000000..a53462a
--- /dev/null
+++ b/files/practicum/VindtDeRedex.icl
@@ -0,0 +1,15 @@
+module VindtDeRedex
+
+import StdEnv
+
+e1 = 42
+
+e2 = 1 + 125 * 8 / 10 - 59
+
+e3 = not True || True && False
+
+e4 = 1 + 2 == 6 - 3
+
+e5 = "1 + 2" == "6 - 3"
+
+e6 = "1111 + 2222" == "1111" +++ " + " +++ "2222"