summaryrefslogtreecommitdiffstats
path: root/qmake/doc/src/snippets/qmake/comments.pro
blob: 957052c81d57a26a0f376e3bd916dd234e54830a (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-project.org/doc/qt-5.0/qtgui/qtextdocument.html pageCount
message($$join(urlPieces, $$LITERAL_HASH))
#! [1]