Difference between revisions of "Not equal"

From Free Pascal wiki
Jump to navigationJump to search
Line 1: Line 1:
 +
<div style="float:left; margin: 0 20px 10px 0; padding:40px; font-size:500%; font-family: Georgia; background-color: #f9f9f9; border: 2px solid #777777;"><nowiki> <> </nowiki> </div>
 +
 
The not equal symbol, '''''<>''''' (consisting of [[Less than|'''''<''''' (the less than symbol)]] followed by [[Greater than|'''''>''''' (the greater than symbol)]]  is used to compare whether the value on the left side of the symbol, is not equal to the value to the right side of the symbol, and returns the [[Boolean|boolean]] value of '''[[True|true]]''' or '''[[False|false]]''' as a result.
 
The not equal symbol, '''''<>''''' (consisting of [[Less than|'''''<''''' (the less than symbol)]] followed by [[Greater than|'''''>''''' (the greater than symbol)]]  is used to compare whether the value on the left side of the symbol, is not equal to the value to the right side of the symbol, and returns the [[Boolean|boolean]] value of '''[[True|true]]''' or '''[[False|false]]''' as a result.
  

Revision as of 07:31, 7 August 2008

<>

The not equal symbol, <> (consisting of < (the less than symbol) followed by > (the greater than symbol) is used to compare whether the value on the left side of the symbol, is not equal to the value to the right side of the symbol, and returns the boolean value of true or false as a result.


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)