shithub: mc

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

View raw version
use "die.use"

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