WriteLn
From SCAR Divi Manual
Definition
<func>procedure WriteLn(x);</func>
Availability
SCAR 1.0 to Current
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.
Output:
Hello! 1 1