shithub: mc

ref: 218258e4ac2940303be597272245cb09662fd759
dir: /lib/std/result.myr/

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