ablescript/examples/lambda.able

8 lines
108 B
Plaintext

dim with_world λ (var) {
var + /*world!*/ =: var;
};
dim foo /*Hello, */;
with_world(foo);
foo print;