shithub: mc

ref: b22fbb6351d844d58002c326809258016595ed31
dir: /lib/std/result.myr/

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