shithub: mc

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

View raw version
use "die.use"

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