Concurrency
Using
result := expression
notation will initiate a new parallel task (green thread) as a child of the current task. Any access to the resultresult
will block current process until the child is finished.You can call core function to create a channel. Channels can be used for communication and synchronization across tasks.
A channel is represented via a generic struct with functions to read/write data (Example A).
Other operations like
select
will be decided later.
Examples
Last updated
Was this helpful?