shithub: mc

ref: 86d5ca3e2a104ffa2cbfa85b073be79037cf34cb
dir: /libstd/result.myr/

View raw version
use "die.use"

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