shithub: mc

ref: 4531e7d7f72c2171fdac5c1914ebaf867db61187
dir: /libstd/result.myr/

View raw version
use "die.use"

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