---
title: "How to create process in erlang?"  
description: "How to create process in erlang?"  
author: "Sunil Singh"  
published: 2015-09-14  
updated: 2020-09-22  
canonical: https://www.mindstick.com/interview/22826/how-to-create-process-in-erlang  
category: "erlang"  
tags: ["otp", "erlang"]  
reading_time: 1 minute  

---

# How to create process in erlang?

The process is created by calling spawn, and spawn forms a new process and returns the pid.

example\

Spawn (Module, Name,[Args] ) -> pid ()

## Answers

### Answer by 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 ()


---

Original Source: https://www.mindstick.com/interview/22826/how-to-create-process-in-erlang

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
