mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 14:11:15 +00:00
13 lines
134 B
GDScript
13 lines
134 B
GDScript
extends Node
|
|
|
|
var outer
|
|
|
|
var dict = {
|
|
"key1": "value",
|
|
"key2": null,
|
|
}
|
|
|
|
func _ready() -> void:
|
|
var inner
|
|
|
|
dict["➡"]
|