*I have been playing on other languages sometimes and I see some
features that speed-up a lot the code creating. I'm posting here one, I
want to see what you think about it.
*
*Good:* fast algorithm testings, code creating
*Bad?:* not a standard of the pascal language
/*method* MyMethod;
*var* A, B: Integer;
*begin
*
{ Simple sample of a variable inside the method begin/end near to a
for-loop }
*var* I: Integer;
*for* I := a *to* b *do*...
{ Or even }
*for* *var* J: Integer := a *to* b *do*...
{ This is normal on languages like C++ and Java }
/*/end;/
*
*What do you think about*?
_______________________________________________
fpc-devel maillist - fpc-devel@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-devel