shithub: mc

ref: 2176941003e95b0c595fc37ca1a7a85e21f10d54
dir: /libstd/result.myr/

View raw version
use "die.use"

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