bobbylisp/simple.hlm

3 lines
62 B
Plaintext

let mk = fn n = fn x = x + n;
let f = mk(35);
let res = f(34);