Events: Difference between revisions

m
→‎{{header|Wren}}: Changed to Wren S/H
(Initial FutureBasic task solution added)
m (→‎{{header|Wren}}: Changed to Wren S/H)
Line 1,256:
 
The tasks to be executed are added to a list by the Scheduler class. The Timer.sleep method suspends the current fiber and signals the scheduler (by calling a private method) to execute the tasks one by one in their own fibers - in Wren only one fiber can execute at a time. The task results are then available to the main fiber on its resumption after Timer.sleep has completed.
<syntaxhighlight lang="ecmascriptwren">import "scheduler" for Scheduler
import "timer" for Timer
 
Line 1,279:
10
</pre>
 
 
=={{header|Yabasic}}==
9,477

edits