Some checks failed
🔗 GHA / 📊 Static checks (push) Has been cancelled
🔗 GHA / 🤖 Android (push) Has been cancelled
🔗 GHA / 🍏 iOS (push) Has been cancelled
🔗 GHA / 🐧 Linux (push) Has been cancelled
🔗 GHA / 🍎 macOS (push) Has been cancelled
🔗 GHA / 🏁 Windows (push) Has been cancelled
🔗 GHA / 🌐 Web (push) Has been cancelled
10 lines
210 B
GDScript
10 lines
210 B
GDScript
func test():
|
|
var lua_dict = {
|
|
a = 1,
|
|
"b" = 2, # Using strings are allowed too.
|
|
"with spaces" = 3, # Especially useful when key has spaces...
|
|
"2" = 4, # ... or invalid identifiers.
|
|
}
|
|
|
|
print(lua_dict)
|