Events: Difference between revisions

Content added Content deleted
m (syntax highlighting fixup automation)
(Initial FutureBasic task solution added)
Line 451: Line 451:
</pre>
</pre>



=={{header|FutureBasic}}==
Event timer fires every tenth of a second
<syntaxhighlight lang="futurebasic">
timerbegin, 0.1, YES
cls : printf @"%@", time(@"h:mm:ss a zzz")
timerend

HandleEvents
</syntaxhighlight>
{{output}}
<pre>
4:44:36 PM EDT
</pre>


=={{header|Gambas}}==
=={{header|Gambas}}==