dictionary_mixed_syntax.gd 198 B

123456789101112
  1. func test():
  2. # Mixing Python-style and Lua-style syntax in the same dictionary declaration
  3. # is allowed.
  4. var dict = {
  5. "hello": {
  6. world = {
  7. "is": "beautiful",
  8. },
  9. },
  10. }
  11. print(dict)