shithub: mc

ref: 026ccbd147926e470ff77a5f1bc613dad7017799
dir: /libstd/result.myr/

View raw version
use "die.use"

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