shithub: mc

ref: faf16f0242436077c86358ccbe1a8d93966fdff7
dir: /lib/std/option.myr/

View raw version
pkg std =
	type option(@a) = union
		`Some @a
		`None
	;;
;;