shithub: mc

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

View raw version
use "die.use"

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