shithub: mc

ref: 8728342de349e7029312ddbd33c2710d2d03fff2
dir: /lib/std/option.myr/

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