Difference between revisions of "ClearDebug"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> procedure ClearDebug; </source> ==Availability== SCAR Divi 3.00 > Current ==Description== This function clears all content cur...") |
(No difference)
|
Revision as of 20:31, 27 June 2011
Definition
procedure ClearDebug;
Availability
SCAR Divi 3.00 > Current
Description
This function clears all content currently present in the debug box.
Example
begin WriteLn('Hello World!'); Wait(1000); ClearDebug; WriteLn('Hey'); end.
Output:
Hey