shithub: mc

ref: 7b8904abd412ecf638d1ed90703c3c5ec1ae3f4c
dir: /libstd/result.myr/

View raw version
use "die.use"

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