shithub: mc

ref: 2ab43c904adfeaee756145872c744a2fdaee97c2
dir: /lib/std/result.myr/

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