shithub: mc

ref: c595986e913ac5f8b0fcd91d544cc964ce820b9f
dir: /libstd/result.myr/

View raw version
use "die.use"

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