shithub: mc

ref: 89e514d5355f9036a30c4a41cacc465e5999aa76
dir: /test/call.myr/

View raw version
use std
/* checks that simple function calls work. should exit with 42. */
const f = {
	-> 21
}

const main = {
	-> f() + f()
}