mirror of
https://github.com/godotengine/godot.git
synced 2024-11-24 21:22:48 +00:00
Updated tutorial_gdscript_efficiently (markdown)
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
|
||||
|
||||
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user