![]() |
Attention | Topic was automatically imported from the old Question2Answer platform. |
![]() |
Asked By | RetroDan007 |
I have the following dictionary
extends Node
var current_question = 0
var questions = {
quest_01 = ["question 01","answer a","answer b"],
quest_02 = ["question 02","answer a","answer b"],
quest_03 = ["question 03","answer a","answer b"]
}
func _ready():
for i in questions.size():
print("Hello")
pass
From every key in the dictionary. I just want to print to console:
question 01
question 02
question 03
just that Thank you very much.