task_run


task_run(t)
      

Make the suspended task t runnable and return void. The function or expression associated with the task will be executed concurrently at an unspecified point of time in the future.

Examples:


let a = task(^(x, y) showln(x + y), args = [10, 20], suspended = true)
task_run(a) 
//> 30
      

Also see:

task
task_base_priority
task_quantum


Core Module Index | Contents