shithub: mc

ref: 3699a6c3daf7648653b3e4936f39bc6061331446
dir: /libstd/result.myr/

View raw version
use "die.use"

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