shithub: mc

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

View raw version
use "die.use"

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