shithub: mc

ref: 352a62d529461a0aabf4dd65686cebccc4d2b6c6
dir: /libstd/result.myr/

View raw version
use "die.use"

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