shithub: mc

ref: 38a6c760656267817632874f4a3e2bcf754b438e
dir: /lib/std/result.myr/

View raw version
use "die.use"

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