Erlang – spawn

Erlang spawn

In this guide, we will discuss Erlang spawn. This is used to create a new process and initialize it.

Syntax

spawn(Function)

Parameters

  • Function − The function which needs to be spawned.

Return Value

This method returns a process id.

For example

-module(helloworld). 
-export([start/0]). 

start() ->
   spawn(fun() -> server("Hello") end). 

server(Message) ->
   io:fwrite("~p",[Message]).

Output

When we run the above program, we will get the following result.

“Hello”

Next Topic : Click Here

This Post Has One Comment

Leave a Reply