Events: Difference between revisions

254 bytes added ,  9 months ago
Initial FutureBasic task solution added
m (syntax highlighting fixup automation)
(Initial FutureBasic task solution added)
Line 451:
</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}}==
715

edits