shithub: mc

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

View raw version
use "die.use"

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