shithub: mc

ref: 3aca4ae01d6cc83f83faeecb0271bf12b2db5722
dir: /test/genericcall.myr/

View raw version
const f = {
	-> 42
}

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

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