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

7 lines
123 B
Plaintext
Raw Normal View History

2018-02-16 15:29:58 +01:00
let increase = fun x -> x + 1 in
let increase = fun x ->
let lop = (increase x) in
lop + 1 in
print (increase 40)