diff options
author | Mart Lubbers | 2015-02-06 08:39:37 +0100 |
---|---|---|
committer | Mart Lubbers | 2015-02-06 08:39:37 +0100 |
commit | 379b6353396ca2401241d714733d570629835ffe (patch) | |
tree | 26652c854a79c627b5f50bc8ac26f9b84f8e196d /files/practicum/VindtDeRedex.icl | |
parent | Merge branch 'master' of https://github.com/dopefishh/fp1 (diff) |
added practicum files, updated gitignore
Diffstat (limited to 'files/practicum/VindtDeRedex.icl')
-rw-r--r-- | files/practicum/VindtDeRedex.icl | 15 |
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"
|