1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-08-13 16:53:59 -04:00
Simba/Doc/sphinx/features/notwellknown.rst

16 lines
287 B
ReStructuredText
Raw Normal View History

2010-07-09 06:14:20 -04:00
Not Well Known Features
=======================
Timestamped Writeln
-------------------
2010-07-09 06:14:20 -04:00
Simba can timestamp all your *writeln* calls.
.. code-block:: pascal
SetScriptProp(SP_WriteTimeStamp, [True]);
WriteLn('Before the wait');
Wait(1000);
Writeln('After the wait');
2010-07-09 06:14:20 -04:00