summaryrefslogtreecommitdiff
path: root/tests/auto/qml/codemodel/ecmascript7/samples/basic/let.js
blob: 652edfc3f76148b9a9b9338147df9488cc2ed982 (plain)
1
2
3
4
5
6
7
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

let x = 4;
let y = 2;
let z = x + y;