shithub: mc

ref: 888bb9b10a6ca5728226f141215d4023eb350e68
dir: /libstd/result.myr/

View raw version
use "die.use"

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