shithub: mc

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

View raw version
use "die.use"

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