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 - */ multi-line comment end indicator http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 */                  Multi-line comment end indicator
------------------------------------------------------------------------------
 Syntax
   /*
   [<text>]
   */

 Arguments
   <text> is an arbitrary sequence of text, generally used as comments.

 Description
   The */ operator concludes a multiline comment initiated with the /*
   operator. Multiline comments can be nested, but the /* and */ delimiters
   must be symmetric.

 Example
   #define EXAMPLE_OPERATOR
   #include example.hdr

   proc Test_951
   ? "start"
   /*
   This is a comment
   that extends to two lines
   */
   wait "Hello, " + /* "you better" + */ "press a key"
   ? "end"
   endproc

   proc main
   Test_951()
   endproc

See Also: /*

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