shithub: mc

ref: 9bd7deeee3fa7b5c36fca2bb45349fe38847f8ab
dir: /lib/std/result.myr/

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