25 lines
228 B
Plaintext
25 lines
228 B
Plaintext
//
|
|
// $Id$
|
|
//
|
|
|
|
// Testing Harbour comments
|
|
|
|
*
|
|
* star comment
|
|
* more star comments
|
|
*
|
|
|
|
NOTE Old fashion comment
|
|
|
|
function Main()
|
|
|
|
/* multiple
|
|
lines
|
|
comment */
|
|
|
|
QOut( "Ok!" ) && old fashion comment
|
|
|
|
return nil
|
|
|
|
|