mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-11 20:05:03 -05:00
16 lines
287 B
ReStructuredText
16 lines
287 B
ReStructuredText
Not Well Known Features
|
|
=======================
|
|
|
|
Timestamped Writeln
|
|
-------------------
|
|
|
|
Simba can timestamp all your *writeln* calls.
|
|
|
|
.. code-block:: pascal
|
|
|
|
SetScriptProp(SP_WriteTimeStamp, [True]);
|
|
WriteLn('Before the wait');
|
|
Wait(1000);
|
|
Writeln('After the wait');
|
|
|