shithub: mc

ref: 06424fdd8ecf8082dac5c109421919d0a3ce169a
dir: /libstd/option.myr/

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