shithub: mc

ref: 9f97dc65e30625ccc6a87dfd1c2ae5914b50886e
dir: /libstd/result.myr/

View raw version
use "die.use"

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