Comparison of Pascal and Delphi: Difference between revisions

Content deleted Content added
Line 34:
8. Numbers and booleans are not printed out in their 'default' field widths by Delphi's version of the Write and WriteLn standard procedures, being instead printed in the minimum amount of space. For example, in Delphi,
 
<source lang="pascaldelphi">
write(5);
write(55);
Line 62:
is equivalent to
 
<source lang="pascaldelphi">
write('false':5);
write('true':4);