Is anyone planning to rewrite precompile.pike within the near future?
If not, I will probably add some code to the current version tonight
which will allow variable definitions anywhere within the code. The
idea is to locate all definitions of variables and move them to the
top.
Example:
int x=0;
int y=1;
for(int i=x;i<y;i++) ...;
will become
int x=0;
int y=1;
int i;
for(i=x;i<y;i++) ...;