shithub: mc

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

View raw version
use "die.use"

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