shithub: mc

ref: 9fa7e376e33410e78fda13897bf8e0914f201ddf
dir: /libstd/option.myr/

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