shithub: mc

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

View raw version
use "die.use"

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