shithub: mc

ref: 7088e222cf1b0ae17607ce0ac232067a172b851e
dir: /libstd/option.myr/

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