index
:
redot-engine.git
4.3
master
Redot Engine – Multi-platform 2D and 3D game engine
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
modules
/
gdscript
/
tests
/
scripts
/
analyzer
/
errors
/
dictionary_duplicate_key_python.gd
blob: 3b8c83e9cbc51fbcad7977fb765fb567106a4229 (
plain
)
1
2
3
4
5
6
func test(): var python_dict = { "a": 1, "b": 2, "a": 3, # Duplicate isn't allowed. }