shithub: mc

ref: 13433d8aa8f5e97e4754916a70e177ff14214cfd
dir: /libstd/result.myr/

View raw version
use "die.use"

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