shithub: mc

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

View raw version
use "die.use"

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