shithub: mc

ref: 5f46919fc6a471d9a75bb25fae64aecefc9ec864
dir: /lib/std/result.myr/

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