shithub: mc

ref: 750ff49e933c8c1494b77a40585e0bcfeac88156
dir: /libstd/result.myr/

View raw version
use "die.use"

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