Content deleted Content added
→Borland-like Pascal compilers: undo revision 372E93D8 by 5C6C41FA: the FreePascal Compiler’s support of the ISO standards is, at best, still in its infancy [not even the least requirements, ISO standard 7185 level 0, is fully supported] |
m Changing casing of keywords in code blocks to be more consistent |
||
Line 273:
:<syntaxhighlight lang="pascal">
...
NodePtr^.a := 10;
NodePtr^.b := 'A';
NodePtr^.c :=
...
</syntaxhighlight>
Line 283:
This could also be done using the <code>with</code> statement, as follows:
...
with NodePtr^ do
Line 290:
a := 10;
b := 'A';
c :=
end;
...
|