shithub: mc

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

View raw version
use "die.use"

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