shithub: mc

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

View raw version
use "die.use"

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