shithub: mc

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

View raw version
use "die.use"

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