Difference between revisions of "Reserved word"

From Free Pascal wiki
Jump to navigationJump to search
(New page: A reserved word is a word which has a special grammatical meaning to a language and cannot be used as an identifier. The following are reserved words and may not be used ...)
 
Line 2: Line 2:
 
be used as an [[Identifier|identifier]].
 
be used as an [[Identifier|identifier]].
  
 
+
See [[Pascal]] [[Reserved words|reserved words]]
The following are reserved words and may not be used as [[Variable|variables]], functions, methods, or object identifiers.
 
 
 
* [[And]]
 
* [[Array]]
 
* [[As]]
 
* [[Begin]]
 
* [[Break]]
 
* [[Case]]
 
* [[Class]]
 
* [[Const]] 
 
* [[Constructor]]
 
* [[Continue]] 
 
* [[Destructor]]
 
* [[Dispose]]
 
* [[Div]]
 
* [[Do]]
 
* [[Downto]] 
 
* [[Else]]
 
* [[End]]
 
* [[Except]]
 
* [[Exit]]
 
* [[Exports]]
 
* [[False]]
 
* [[File]]
 
* [[Finalization]] 
 
* [[Finally]]
 
* [[For]]
 
* [[Function]]
 
* [[goto|Goto]]
 
* [[If]]
 
* [[Implementation]]
 
* [[In]]
 
* [[Inherited]]
 
* [[Initialization]]
 
* [[Inline]] 
 
* [[Interface]]
 
* [[Is]]
 
* [[label|Label]]
 
* [[Library]]
 
* [[Mod]]
 
* [[New]]
 
* [[Nil]]
 
* [[Not]]
 
* [[Object]]
 
* [[Of]]
 
* [[On]]
 
* [[Operator]] 
 
* [[Or]]
 
* [[Out]]
 
* [[Packed]]
 
* [[Procedure]]
 
* [[Program]]
 
* [[Property]]
 
* [[Raise]]
 
* [[Record]]
 
* [[Repeat]]
 
* [[Self]]
 
* [[Set]]
 
* [[Shl]]
 
* [[Shr]]
 
* [[String]]
 
* [[Then]]
 
* [[Threadvar]]
 
* [[To]]
 
* [[True]]
 
* [[Try]]
 
* [[Type]]
 
* [[Unit]]
 
* [[Until]]
 
* [[Uses]]
 
* [[Var]]
 
* [[While]]
 
* [[With]]
 
* [[Xor]]
 

Revision as of 11:41, 17 October 2007

A reserved word is a word which has a special grammatical meaning to a language and cannot be used as an identifier.

See Pascal reserved words