aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlformat/data/forOf.formatted.qml
blob: fa9ff9c631cbb8b6b188f5f3f8e7744301c2706c (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQml 2.0

QtObject {
    Component.onCompleted: {
        var list = [[1, 2], [3, 4], [5, 6]];
        for (const [x, y] of list)
            console.log("X: " + x + "; Y: " + y);
        for (let [x, y] of list)
            console.log("X: " + x + "; Y: " + y);
    }
}