shithub: mc

ref: 225486558c1552baf09cae2a17d313b061ee6edd
dir: /lib/std/result.myr/

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