shithub: mc

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

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