shithub: mc

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