Difference between revisions of "Write"

From Lazarus wiki
Jump to navigationJump to search
m (Review)
(categorization)
Line 1: Line 1:
 
{{Write}}
 
{{Write}}
  
Write is a [[Keyword|keyword]] which indicates that some data must be written on the screen (by default).
+
Write is a [[Keyword|keyword]] which indicates that some data must be written on the screen (by default) or to a file.
 
For example:
 
For example:
  
Line 19: Line 19:
 
'''WriteLn''' behaves just like Write, except it leaves (a) newline character(s) after the text.
 
'''WriteLn''' behaves just like Write, except it leaves (a) newline character(s) after the text.
  
 +
[[Category:File Handling]]
 
[[Category:Pascal]]
 
[[Category:Pascal]]

Revision as of 21:34, 7 March 2015

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

Write is a keyword which indicates that some data must be written on the screen (by default) or to a file. For example:

var
  a, b: Integer;
begin
  a := 42;
  b := 23;
  write('a=', a, ' and b=', b);
end

This prints on screen: a=42 and b=23

Parameters in the Write procedure must be separated by a comma (',').

WriteLn behaves just like Write, except it leaves (a) newline character(s) after the text.