Difference between revisions of "WriteLn"
From SCAR Divi Manual
Line 10: | Line 10: | ||
==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. In case the debug box is not visible, it will be toggled visible. |
===Accepted Types=== | ===Accepted Types=== |
Revision as of 20:28, 27 June 2011
Definition
procedure WriteLn(x);
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. In case the debug box is not visible, it will be toggled visible.
Accepted Types
Example
begin WriteLn('Hello!'); WriteLn(1); WriteLn(True); end.
Output:
Hello! 1 1