Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/modules/gdscript/tests/scripts/completion/index/local_dictionary_keys.gd
10287 views
extends Node

var outer

func _ready() -> void:
    var inner

    var dict: Dictionary = {
        "key1": "value",
        "key2": null,
    }

    dict["➡"]