max .bb file size

Blitz3D Forums/Blitz3D Programming/max .bb file size

Is there a maximum source code single file size to be observed?

i intend to build a feature that will compile all pages "included" into one big file.
What the maximum filesize the blitzcc can cope with?

only in the demo version. with blitz, normally there is no size limit.

btw: the command "include" and the command "const" are preprocessor commands.

preprocessor commands, are commands which will be executed even before the command is compiled, so

this code
Const xyz = 5
Print xyz


will pre-proccessorly converted into this code:
Print 5


so, what you want to da as a feature does already exist in every programming language :)

im trying to make my IDE do Block Commenting for Blitz3D

but knowing that the final file can be anysize, thats music to my ears