Goroutines in Nim
On this page
Based on the provided instructions, here is the translated code and explanation in Nim:
Example: Goroutines (translated to Nim)
A goroutine
is a lightweight thread of execution.
Suppose we have a function call f(s)
. Here’s how we’d call that in the usual way, running it synchronously.
To invoke this function in a thread, use createThread
. This new thread will execute concurrently with the calling one.
You can also start a thread for an anonymous procedure call.
Our two function calls are running asynchronously in separate threads now. Wait for them to finish (for a more robust approach, use JoinThread
).
When we run this program, we see the output of the blocking call first, then the output of the two threads. The threads’ output may be interleaved, because threads are being run concurrently by the Nim runtime.