WriteLn

From SCAR Divi Manual
Revision as of 14:27, 25 June 2011 by Freddy (talk | contribs) (Created page with "== Definition == procedure WriteLn(x); == Example == begin WriteLn('Hello!'); WriteLn(1); WriteLn(True); end.")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

procedure WriteLn(x);

Example

begin
  WriteLn('Hello!');
  WriteLn(1);
  WriteLn(True);
end.