shithub: mc

ref: 9c210871b34aca402c10c7b16b9961af506d8979
dir: /lib/std/result.myr/

View raw version
use "die.use"

pkg std =
	type result(@a, @b) = union
		`Ok	@a
		`Fail	@b
	;;
;;