shithub: mc

ref: 5ce1ef188530525a21db822bafcd7886d96fcb92
dir: /test/genericcall.myr/

View raw version
const f = {
	-> 42
}

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

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