shithub: mc

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

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