Comparison of Pascal and Delphi: Difference between revisions

Content deleted Content added
m Reverted edits by Ewok18 (talk) to last version by ShakingSpirit
"FALSE" & "TRUE" will be printed in uppercase. Corrected sample code.
Line 58:
is equivalent to:
 
write('falseFALSE':5);
write('trueTRUE':4);
 
in Delphi, but:
 
write('falseFALSE':TotalWidth);
write('trueTRUE':TotalWidth);
 
in ISO 7185, where TotalWidth is implementation-defined.