c0083c0f90
This also ignores `.out` files in the file format static checks.
12 lines
198 B
GDScript
12 lines
198 B
GDScript
func test():
|
|
# Mixing Python-style and Lua-style syntax in the same dictionary declaration
|
|
# is allowed.
|
|
var dict = {
|
|
"hello": {
|
|
world = {
|
|
"is": "beautiful",
|
|
},
|
|
},
|
|
}
|
|
|
|
print(dict)
|