shithub: mc

ref: f4a4987fb85dc9ea146146068734988bb046a3ab
dir: /lib/std/result.myr/

View raw version
use "die.use"

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