summaryrefslogtreecommitdiff
path: root/files/practicum/MetOfZonderCurry.icl
blob: e65aaabbfca0a1bb178f931c8a94eefaaab01d9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module MetOfZonderCurry

import StdEnv

e1 = curry fst

e2 = curry snd

e3 = uncurry (+)

e4 = uncurry (-)

e5 = uncurry (*)

e6 = uncurry (/)

Start = 42