shithub: mc

ref: f139158ef2c78c2aef7afda69b697e50619f8a51
dir: /libstd/result.myr/

View raw version
use "die.use"

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