Learn C.
It would still be likely to introduce bugs.
/ Henrik Grubbström (Lysator)
Previous text:
2004-05-05 11:25: Subject: precompile.pike
Ah, perhaps I'm very unclear on this point. I wish to do the following:
void f() { for(int x=0;;) ...; }
=>
void f() { int x; for(x=0;;) ...; }
ie, variables shouldn't become global, just moved within the function.
/ Marcus Agehall (Scanian)