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

7 lines
123 B
Plaintext

let increase = fun x -> x + 1 in
let increase = fun x ->
let lop = (increase x) in
lop + 1 in
print (increase 40)