Write

From Free Pascal wiki
Revision as of 14:11, 11 May 2012 by Chronos (talk | contribs) (syntaxhighlight)
Jump to navigationJump to search

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