Updated tutorial_gdscript_efficiently (markdown)

reduz 2014-09-20 08:44:31 -07:00
parent 79231b6302
commit 7781274852

@ -238,13 +238,13 @@ func game():
Dictionaries can also be used as data markup or quick structures. While GDScript dictionaries resemble python dictionaries, it also supports Lua style syntax an indexing, which makes it very useful for writing initial states and quick structs:
```
```python
# same example, lua-style
# this syntax is a lot more readable and usable
var d = {
name="john",
age:22
age=22
}
print("Name: ", d.name, " Age: ", d.age ) # used "." based indexing