shithub: mc

ref: 2281d457448549cf86ae9475627c0c12a8c4843f
dir: /libstd/result.myr/

View raw version
use "die.use"

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