shithub: mc

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

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