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 - ; line separator http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 ;                   Line separator
------------------------------------------------------------------------------
 Syntax
   <statement-start>;
      <statement-end>

 Arguments
   <statement-start> is the first part of any valid source statement.

   <statement-end> is the end part of any valid source statement.

 Description
   The ; operator is used to interrupt a source line that will be continued
   on the next line. Source statements can be broken to any number of lines.

 Example
   #define EXAMPLE_OPERATOR
   #include example.hdr

   proc Test_1456
   vardef
      byte nColor
   enddef
   nColor := ;      // this line is interrupted to place a comment here
      __syscolor[ CLR_STD ]
   do case
   case nColor == BLACK_LIGHT_GREY
      ? "white"
   case nColor == BLACK_RED
      ? "red"
   case nColor == BLACK_GREEN
      ? "green"
   otherwise
      ? "something else"
   endcase
   endproc

   proc main
   Test_1456()
   endproc

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