Home / DeveloperSection / Interviews / How to create process in erlang?
You haven’t finished your post yet. Are you sure you want to leave and discard your draft?
Can you answer this question?
Sunil Singh
The process is created by calling spawn, and spawn forms a new process and returns the pid.
example
Spawn (Module, Name,[Args] ) -> pid ()
You have need login or register for voting of answers or question.
Sunil Singh
14-Sep-2015The process is created by calling spawn, and spawn forms a new process and returns the pid.
example
Spawn (Module, Name,[Args] ) -> pid ()