shithub: mc

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

View raw version
use "die.use"

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