added practicum files, updated gitignore
[fp1415.git] / files / practicum / FunctieCompositie.icl
1 module FunctieCompositie
2
3 import StdEnv
4
5 e1 = ((*) 5) o ((+) 1)
6
7 e2 = ((+) 1) o ((*) 5)
8
9 e3 = ((*) 2) o ((*) 2)
10
11 e4 = (min 100) o (max 0)
12
13 e5 = ((<) 2) o length
14
15 Start = 42