shithub: mc

ref: cd67e508b96cf787ad5a7910dfb717584f718102
dir: /libstd/result.myr/

View raw version
use "die.use"

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