13 lines
181 B
Plaintext
13 lines
181 B
Plaintext
-- main.mcl --
|
|
$lambda = func($x) {
|
|
func($f, $arg) {
|
|
$f($arg)
|
|
}(func($z) { "hello" + $x }, "nope")
|
|
}
|
|
|
|
$s = $lambda("world")
|
|
|
|
test [$s,] {}
|
|
-- OUTPUT --
|
|
Vertex: test[helloworld]
|