shithub: mc

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

View raw version
use "die.use"

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