shithub: mc

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

View raw version
use "die.use"

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