aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qml/referenceexamples/adding/example.qml
blob: 068352bc35744d4e73a42d3003e6b8e33e7a6adc (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

// ![0]
import People

Person {
    name: "Bob Jones"
    shoeSize: 12
}
// ![0]