shithub: mc

ref: 9d653c1ec47061e3985be018dfe29ad93a657ec1
dir: /libstd/result.myr/

View raw version
use "die.use"

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