shithub: mc

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

View raw version
use "die.use"

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