Difference between revisions of "Greater than"

From Free Pascal wiki
Jump to navigationJump to search
m
Line 5: Line 5:
  
 
The greater than symbol, '''''>''''' is used to compare whether the value on the left side of the symbol, exceeds that of 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 greater than symbol, '''''>''''' is used to compare whether the value on the left side of the symbol, exceeds that of the value to the right side of the symbol, and returns the [[Boolean|boolean]] value of [[True|true]] or [[False|false]] as a result.
 +
 +
In [[ASCII]], the character code decimal <syntaxhighlight lang="pascal" enclose="none"> 62</syntaxhighlight> (or [[Hexadecimal|hexadecimal]] <syntaxhighlight lang="pascal" enclose="none">3E</syntaxhighlight>) is defined to be <syntaxhighlight lang="pascal" enclose="none">></syntaxhighlight> (Greater than).
  
 
{{Symbols}}
 
{{Symbols}}
 
[[Category:Symbols]]
 
[[Category:Pascal]]
 

Revision as of 08:23, 19 April 2018

English (en) suomi (fi) français (fr) русский (ru)

>

The greater than symbol, > is used to compare whether the value on the left side of the symbol, exceeds that of the value to the right side of the symbol, and returns the boolean value of true or false as a result.

In ASCII, the character code decimal 62 (or hexadecimal 3E) is defined to be > (Greater than).


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)