shithub: mc

ref: 7a1dfce1281c992e0163a4c71bea66152d827333
dir: /libstd/result.myr/

View raw version
use "die.use"

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