doc/src/snippets/qmake/comments.pro
branchRCL_3
changeset 8 3f74d0d4af4c
parent 0 1918ee327afb
equal deleted inserted replaced
6:dee5afe5301f 8:3f74d0d4af4c
       
     1 #! [0]
       
     2 # Comments usually start at the beginning of a line, but they
       
     3 # can also follow other content on the same line.
       
     4 #! [0]
       
     5 
       
     6 #! [1]
       
     7 # To include a literal hash character, use the $$LITERAL_HASH variable:
       
     8 urlPieces = http://qt.nokia.com/doc/4.0/qtextdocument.html pageCount
       
     9 message($$join(urlPieces, $$LITERAL_HASH))
       
    10 #! [1]