summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/declarative/comments.qml
blob: 4f8a442abe81754b8ea1d72223b1f3a01a1163dd (plain)
1
2
3
4
5
6
7
8
9
10
11
import Qt 4.6

Text {
    text: "Hello world!"    //a basic greeting
    /*
        We want this text to stand out from the rest so
        we give it a large size and different font.
     */
    font.family: "Helvetica"
    font.size: 24
}