shithub: mc

ref: 65bd7e26119f1a414b43bd6837f0db27641a4b5c
dir: /libstd/result.myr/

View raw version
use "die.use"

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