shithub: mc

ref: 3abef8578c5831bacfdaf0c16a1651052d2313fd
dir: /libstd/result.myr/

View raw version
use "die.use"

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