Comments

There are 3 basic types of comments
C++ Pascal Basic
Rest of line
//
//
' (apostrophy)
Block
/* .. */
{ .. }
(* .. *)
None Available

Notice that the Pascal curly brace block comment delimiters are the same as the C++ code block delimiters. The Pascal // and (* .. *) delimiters are from the Delphi help and may be compiler dependent.

Notes on Other Languages:


Author: Robert Clemenzi - clemenzi@cpcug.org
URL: http:// cpcug.org / user / clemenzi / technical / Languages / Comments.htm