shithub: mc

ref: 8c0fab2ccc7f5d5c4a611a4de4078c7af21963da
dir: /libstd/result.myr/

View raw version
use "die.use"

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