shithub: mc

ref: 24d107a198b8a42c29555967d558209808a80b48
dir: /libstd/result.myr/

View raw version
use "die.use"

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