mirror of
https://github.com/godotengine/godot.git
synced 2026-04-18 18:01:29 +00:00
7 lines
134 B
GDScript
7 lines
134 B
GDScript
const ARRAY: Array = [0]
|
|
const DICTIONARY: Dictionary = { 0: 0 }
|
|
|
|
func test():
|
|
var key: int = 0
|
|
ARRAY[key] = 0
|
|
DICTIONARY[key] = 0
|