shithub: mc

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

View raw version
use "die.use"

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