Variables In Pascal
We must define a variable using a specific
syntax which will be understood by the
computer.
This syntax is:
n
VariableName
:
DataType
;
Which must only appear within the
Var
section.
Note the use of colon and semi-
colon.
This has been deliberate.