shithub: mc

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

View raw version
use "die.use"

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