From Bohemia Interactive Community
Notes
- Posted on 29 April 2010 (CEST)
- alef
for "_i" from 0 to 0 do {}; //will do once, with _i = 0
for "_i" from 0 to -1 do {}; //will not do
Bottom Section
- Posted on June 4, 2015 - 19:27 (UTC)
- Killzone Kid
-
Variable name doesn't have to start with _. could be:
for "LAlala" from 0 to 0 do {hint str LAlala}; //0
The variable LAlala will exist only inside do {} scope and will not overwrite any variable of the same name that existed before.
- Posted on June 10, 2015 - 14:46 (UTC)
- Killzone Kid
-
This command is broken Feedback