Difference between revisions of "Not equal"

From Free Pascal wiki
Jump to navigationJump to search
m
m
Line 1: Line 1:
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 value of '''true''' or '''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 value of '''true''' or '''false''' as a result.
  
 
{{Symbols}}
 
{{Symbols}}

Revision as of 17:41, 10 January 2007

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)