shithub: mc

ref: 71bba431594a726d16fe726a71c7c2e7ab6a04d1
dir: /lib/std/result.myr/

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