Content deleted Content added
Line 12:
Because Borland Delphi is a widely used version of Pascal, it is useful to compare the two languages. Note that here are presented only the differences between Borland Delphi and the basic ISO 7185 standard. Undiscussed are any extensions provided by Borland Delphi. In other words, this section answers the question "why doesn't my standard Pascal program run under Borland Delphi?", and perhaps "what can I write in Borland Delphi that will also be compatible with the ISO 7185 standard?".
1. Procedures and functions may not appear as parameters
2. [[Goto]] statements cannot reference targets outside procedure/function bodies (so called "intraprocedural gotos
3. No
4. No "
new(p, t)
Line 24:
Where t is a variant record tag type.
5. The functions "
6. { and (*, } and *) are not synonyms of each other as required by the standard. Ie.:
|