shithub: mc

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

View raw version
pkg std =
	type result(@a, @b) = union
		`Ok	@a
		`Err	@b
	;;
;;