shithub: mc

ref: bc999872d044b073d9f20bd2278c58ad7811453c
dir: /libstd/error.myr/

View raw version
use "die.use"

pkg std =
	type error(@a, @b) = union
		`Success	@a
		`Failure	@b
	;;
;;