shithub: mc

ref: 82526d4456cab45d013dbf12fe9d49cd79ec9796
dir: /lib/std/result.myr/

View raw version
use "die.use"

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