DEBSOURCES
Skip Quicknav
sources / qt6-declarative / 6.9.1%2Bdfsg-1 / tests / auto / qml / qmllint / data / forLoop.qml
123456789
import QtQml 2.0 QtObject { Component.onCompleted: { var stuff = [1, 2, 3, 4] for (var a in stuff) console.log(a); } }