shithub: mc

ref: 58ace77cc4b17d32fe0cf3904ffd57b4b1afe4b4
dir: /lib/std/result.myr/

View raw version
use "die.use"

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