Updated tutorial_gdscript_efficiently (markdown)

reduz 2014-09-20 08:58:45 -07:00
parent ef4e559b61
commit a92fe64c41

@ -304,4 +304,15 @@ for i in range(strings.size()):
print(strings[i])
```
And while() loops are the same everywhere:
``python
var i=0
while(i<strings.size()):
print(strings[i])
i+=1
```