shithub: mc

ref: f2365d327bed87e68d94b9b458cf27b70efc9f4b
dir: /test/exportmain.myr/

View raw version
use std

pkg =
	const foo	: (val:int -> int)
;;


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}