shithub: mc

ref: 5257df69de2bf48496ec82b4a515f118ac17a25b
dir: /lib/std/result.myr/

View raw version
use "die.use"

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