mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-11 20:05:03 -05:00
19 lines
361 B
ReStructuredText
19 lines
361 B
ReStructuredText
Not Well Known Features
|
|
=======================
|
|
|
|
Simba has several features that are relatively unknown.
|
|
A few will be listed here.
|
|
|
|
Timestamped Writeln
|
|
-------------------
|
|
|
|
Simba can timestamp all your debug.
|
|
|
|
.. code-block:: pascal
|
|
|
|
SetScriptProp(SP_WriteTimeStamp, [True]);
|
|
WriteLn('Before the wait');
|
|
Wait(1000);
|
|
Writeln('After the wait');
|
|
|