shithub: mc

ref: 2a833f441b9a03e1222ab501e71fc029bf069665
dir: /libstd/result.myr/

View raw version
use "die.use"

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