How is a “process” created in Erlang?
A process is created by calling spawn, which forms a process and returns the pid. Here’s how you can do it:
Spawn (Module, Name, Args ) -> pid ()
Suggest An Answer
No suggestions Available!
A process is created by calling spawn, which forms a process and returns the pid. Here’s how you can do it:
Spawn (Module, Name, Args ) -> pid ()