shithub: mc

ref: 2cecb2f0578cc0893fbb147dcc3d174f6643baac
dir: /lib/std/result.myr/

View raw version
use "die.use"

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