summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/qmake/comments.pro
blob: 390444b94aac895ebf77070136dbb6e2af899685 (plain)
1
2
3
4
5
6
7
8
9
10
#! [0]
# Comments usually start at the beginning of a line, but they
# can also follow other content on the same line.
#! [0]

#! [1]
# To include a literal hash character, use the $$LITERAL_HASH variable:
urlPieces = http://qt.nokia.com/doc/4.0/qtextdocument.html pageCount
message($$join(urlPieces, $$LITERAL_HASH))
#! [1]