shithub: mc

ref: 56a192ced907bcc27405b85e120abb3005f9d981
dir: /libstd/result.myr/

View raw version
use "die.use"

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