shithub: mc

ref: 0626c5a842587790f9fac184c31b241856faad61
dir: /libstd/result.myr/

View raw version
use "die.use"

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