shithub: mc

ref: 761ee5726bf216dd7557114d422416a08a1f6bed
dir: /libstd/result.myr/

View raw version
use "die.use"

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