Difference between revisions of "WriteLn"
From SCAR Divi Manual
(→Availability) |
(→Availability) |
||
| Line 3: | Line 3: | ||
==Availability== | ==Availability== | ||
| − | SCAR | + | SCAR Divi 3.00 > Current |
*Before SCAR Divi 3.20, '''x''' was defined as "x: string". | *Before SCAR Divi 3.20, '''x''' was defined as "x: string". | ||
Revision as of 14:54, 25 June 2011
Definition
<func>procedure WriteLn(x);</func>
Availability
SCAR Divi 3.00 > Current
- Before SCAR Divi 3.20, x was defined as "x: string".
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