shithub: mc

ref: f2afc8da2339dbfaaa7dd92abf63521ae38e6dd8
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()
}