shithub: mc

ref: 312487e2353023d01ce346b8812373223aba5f29
dir: /libstd/result.myr/

View raw version
use "die.use"

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