shithub: mc

ref: 930e65474d00875474af8b2a1ca3aaae9d46cace
dir: /lib/std/result.myr/

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