shithub: mc

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

View raw version
use "die.use"

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