shithub: mc

ref: 3d9ce334368f0d6e7da472200c68c7081889058b
dir: /test/genericuret.myr/

View raw version
use std

generic work = {val : @a
	-> `std.Some val
}

const main = {
	work(123)
	std.exit(42)
}