WriteLn

From SCAR Divi Manual
Revision as of 14:46, 25 June 2011 by Freddy (talk | contribs)
Jump to: navigation, search

Definition

procedure WriteLn(x);

Description

This function writes data defined in x to the debug box. It accepts a wide variety of types. Only base types are accepted.

Accepted Types

Example

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