Comparison of Pascal and Delphi: Difference between revisions

Content deleted Content added
"FALSE" & "TRUE" will be printed in uppercase. Corrected sample code.
Undid revision 214420839 by 217.168.74.9 (talk) what in the heck does case have to do with the subject at hand?
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.