doc/src/snippets/qmake/comments.pro
changeset 0 1918ee327afb
equal deleted inserted replaced
-1:000000000000 0:1918ee327afb
       
     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]