shithub: mc

ref: e7753379f41991512b2ba815d879800e1b7c725b
dir: /test/genericcall.myr/

View raw version
const f = {
	-> 42
}

generic id = {a:@a
	-> f()
}

const main = {
	id("adsf")
	-> id(42)
}