shithub: mc

ref: 8535643bf09a88c6e83727ba0243772703171ca8
dir: /libstd/error.myr/

View raw version
use "die.use"

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