summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/declarative/qml-intro/hello-world1.qml
blob: 244175c1819a54c779c286f24080c78a53478ff0 (plain)
1
2
3
4
5
6
7
8
9
10
11
import Qt 4.7

Rectangle {
    id: myRectangle
    width: 500
    height: 400

    Text { text: "Hello World!" }

    color: "lightgray"
}