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 - + string concatenation operator (binary) http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 +                   String concatenation operator (binary)
------------------------------------------------------------------------------
 Syntax
   cString1 + cString2

 Arguments
   cString1 is a character string to which cString2 is appended.

   cString2 is a character string to concatenate to the end of cString1.

 Description
   The + operator appends the second operand to the first one, and returns
   the result of the concatenation of the two strings.

 Example
   #define EXAMPLE_OPERATOR
   #include example.hdr

   proc Test_918
   ? "Hello " + "world"        // prints Hello world
   ? "Hello " - "world"        // prints Helloworld
   endproc

   proc main
   Test_918()
   endproc

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