shithub: mc

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

View raw version
use "die.use"

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