shithub: mc

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