shithub: mc

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

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