Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Force 4.0 Reference - // inline comment start indicator http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 //                  Inline comment start indicator
------------------------------------------------------------------------------
 Syntax
   [<statements>] // [<text>]

 Arguments
   <statement> is a valid source statement.
   <text> is any text, usually for commenting.

 Description
   The // operator is the inline comment indicator. If // is detected
   within a source line, but not within a literal string constant, all
   text on the source line following the // is considered as comments and
   is ignored by the compiler.

 Example
   #define EXAMPLE_OPERATOR
   #include example.hdr

   proc Test_952
   ? "start"        // first line
   // ? "middle"
   ? "end"          // last line
   endproc

   proc main
   Test_952()
   endproc

See Also: /*

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson