shithub: mc

ref: cf57ad51e7ae7744b8a723f6d5fe6d67ca7c509c
dir: /test/genericchain.myr/

View raw version
use std

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

generic try = {opt : std.option(@b)
	match opt
	| `std.Some v:	-> v
	| `std.None:	std.die("Badness\n")
	;;
}

const main = {
	std.put("val = {}\n", try(fail(123)))
}