Write

From Lazarus wiki
Revision as of 14:11, 11 May 2012 by Chronos (talk | contribs) (syntaxhighlight)
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Deutsch (de) English (en) español (es) русский (ru)

write is a keyword which indicates some characters to put on the screen for example

...
begin
  ...
  Write('result=', a);
  ... 
end

prints result=(the content of the variable a) all the objects must be separed by a ,. writeln leaves a the line after the text