Difference between revisions of "Identifier"

From Lazarus wiki
Jump to navigationJump to search
m
Line 1: Line 1:
 +
{{Identifier}}
 +
 
An '''identifer''' is a symbol used in a [[Pascal]] [[Program|program]] which consists of letters, numbers and certain special characters, used to indicate a specific [[Variable|variable]], [[Const|constant]], [[Object|object]], [[Record|record]], [[Type|type]], [[Procedure|procedure]] or [[Function|function]].
 
An '''identifer''' is a symbol used in a [[Pascal]] [[Program|program]] which consists of letters, numbers and certain special characters, used to indicate a specific [[Variable|variable]], [[Const|constant]], [[Object|object]], [[Record|record]], [[Type|type]], [[Procedure|procedure]] or [[Function|function]].
  

Revision as of 19:17, 3 October 2007

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

An identifer is a symbol used in a Pascal program which consists of letters, numbers and certain special characters, used to indicate a specific variable, constant, object, record, type, procedure or function.

For example, in the following piece of code:

Program WittsEnd;
Const Y=2;
Var Plugh: Integer;
Procedure Xyzzy; begin end;
Begin Plugh := Y*2; end.

we can say that

  • WittsEnd
  • Y
  • Plugh
  • Xyzzy

Are all identifiers.