shithub: mc

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

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