summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/declarative/qml-intro/rectangle.qml
blob: 7235e9bcd3e641cf2583c1ce50a491bd589966a2 (plain)
1
2
3
4
5
6
7
8
import Qt 4.7

// This is a comment. And below myRectangle is defined.
Rectangle {
    id: myRectangle
    width: 500
    height: 400
}