shithub: mc

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

View raw version
use "die.use"

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