summaryrefslogtreecommitdiff
path: root/fp1/week1/camil/2.2/VindtDeRedex.icl
diff options
context:
space:
mode:
authorMart Lubbers2015-04-16 21:22:20 +0200
committerMart Lubbers2015-04-16 21:22:20 +0200
commit6f604b19d3f5966e5c1d7c4fdf3703bd6ff0861c (patch)
tree96d580507249f7f58368476d9113007d4afcd748 /fp1/week1/camil/2.2/VindtDeRedex.icl
parentAdded student numbers (diff)
update to fp2 yay, public and licence
Diffstat (limited to 'fp1/week1/camil/2.2/VindtDeRedex.icl')
-rw-r--r--fp1/week1/camil/2.2/VindtDeRedex.icl17
1 files changed, 17 insertions, 0 deletions
diff --git a/fp1/week1/camil/2.2/VindtDeRedex.icl b/fp1/week1/camil/2.2/VindtDeRedex.icl
new file mode 100644
index 0000000..c7ec330
--- /dev/null
+++ b/fp1/week1/camil/2.2/VindtDeRedex.icl
@@ -0,0 +1,17 @@
+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"
+
+Start = e6