shithub: mc

ref: bc3ef744e68cc21d9e899f177e934a937aec8afc
dir: /libstd/result.myr/

View raw version
use "die.use"

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