Plus

From Lazarus wiki
Revision as of 13:16, 8 November 2016 by E-ric (talk | contribs)
Jump to navigationJump to search

--E-ric (talk) 13:16, 8 November 2016 (CET) English (en) suomi (fi) français (fr) русский (ru)

+

The symbol + (pronounced "plus") is used to :

  • add two numbers, the result is a number
  • or concatenate two strings, the result is a string.
A := 1 + 3; // -> A = 4
B := 'two strings ' + 'concatenated'; // -> B = 'two strings concatenated'



navigation bar: topic: Pascal symbols
single characters

+ (plus)  •  - (minus)  •  * (asterisk)  •  / (slash)
= (equal)  •  > (greater than)  •  < (less than)
. (period)  •  : (colon)  •  ; (semi colon)
^ (hat)  •  @ (at)
$ (dollar sign)  •  & (ampersand)  •  # (hash)
' (single quote)

character pairs

<> (not equal)  •  <= (less than or equal)  •  := (becomes)  •  >= (greater than or equal)

 •  >< (symmetric difference)  •  // (double slash)


An editor has declared this article to be a stub, meaning that it needs more information. Can you help out and add some? If you have some useful information, you can help the Free Pascal Wiki by clicking on the edit box on the left and expanding this page.