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