Comma: Difference between revisions

From Free Pascal wiki
Jump to navigationJump to search
No edit summary
No edit summary
Line 6: Line 6:


* It is used to separate the [[Variable|variables]].  
* It is used to separate the [[Variable|variables]].  
* It is used to separate the [[Const|constant]] in [[Case]] statement.
* It is used to separate the [[Constant|constant]] in [[Case|<syntaxhighlight lang="pascal" enclose="none">case</syntaxhighlight>]] statement.
* It is used to separate the [[Unit|<syntaxhighlight lang="pascal" enclose="none">unit</syntaxhighlight>]] in [[Uses|<syntaxhighlight lang="pascal" enclose="none">uses</syntaxhighlight>]] statement.
    
    



Revision as of 19:34, 21 March 2019

English (en) suomi (fi) français (fr) русский (ru) 中文(中国大陆) (zh_CN)

,

The symbol , (pronounced "comma") is used in Pascal in several ways.


other remarks



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)