mpri-funcprog-project/src/tests/multi_args.lambda

3 lines
53 B
Plaintext
Raw Normal View History

2018-02-16 01:58:24 +01:00
let sum = fun x -> fun y -> x + y in
2018-02-16 18:04:34 +01:00
print(sum 40 2)