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/FunctieCompositie.icl | |
parent | Merge branch 'master' of https://github.com/dopefishh/fp1 (diff) |
added practicum files, updated gitignore
Diffstat (limited to 'files/practicum/FunctieCompositie.icl')
-rw-r--r-- | files/practicum/FunctieCompositie.icl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/files/practicum/FunctieCompositie.icl b/files/practicum/FunctieCompositie.icl new file mode 100644 index 0000000..a9ab8dd --- /dev/null +++ b/files/practicum/FunctieCompositie.icl @@ -0,0 +1,15 @@ +module FunctieCompositie
+
+import StdEnv
+
+e1 = ((*) 5) o ((+) 1)
+
+e2 = ((+) 1) o ((*) 5)
+
+e3 = ((*) 2) o ((*) 2)
+
+e4 = (min 100) o (max 0)
+
+e5 = ((<) 2) o length
+
+Start = 42
|