1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Updated tutorial_gdscript_efficiently (markdown)

reduz
2014-09-20 12:45:22 -07:00
parent 43c08efc44
commit c1028e274e

@@ -334,7 +334,7 @@ for i in range(5,10,2):
And backwards looping is done through a negative counter:
```c++
for(int i=10;i>0;i++) {}
for(int i=10;i>0;i--) {}
```
becomes