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.
let a = task(^(x, y) showln(x + y), args = [10, 20], suspended = true)
task_run(a)
//> 30