shithub: mc

ref: ca51f97ae84297763505654567d38a74dc8dad5b
dir: /lib/std/result.myr/

View raw version
use "die.use"

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