shithub: mc

ref: 06424fdd8ecf8082dac5c109421919d0a3ce169a
dir: /libstd/result.myr/

View raw version
use "die.use"

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