shithub: mc

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

View raw version
use "die.use"

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