Difference between revisions of "WriteLn"

From SCAR Divi Manual
Jump to: navigation, search
(Accepted Types)
Line 4: Line 4:
 
==Description==
 
==Description==
 
This function writes data defined in '''x''' to the debug box. It accepts a wide variety of types. Only base types are accepted.
 
This function writes data defined in '''x''' to the debug box. It accepts a wide variety of types. Only base types are accepted.
 +
 +
==Availability==
 +
SCAR 1.0 to Current
  
 
===Accepted Types===
 
===Accepted Types===

Revision as of 15:48, 25 June 2011

Definition

<func>procedure WriteLn(x);</func>

Description

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

Availability

SCAR 1.0 to Current

Accepted Types

Example

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

Output:

Hello!
1
1

See Also