Concurrency
Atomo uses message-passing concurrency akin to Erlang. Processes are very cheap to spawn and kill, and you can send messages to them or wait to receive values.
receive → any
Waits for a message, blocking until one is received.
b spawn → Process | b is-a?: Block
Executes b call
in a separate process, and returns that new process.
halt → @ok
Immediately shuts down the Atomo VM, when called from any process.