shithub: mc

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