shithub: mc

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

View raw version
use "die.use"

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