Erlang – get

Erlang get

In this guide, we will discuss Erlang get. The method returns the process dictionary as a list.

Syntax

get()

Parameters

  • None

Return Value

The method returns the process dictionary as a list.

For example

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

start() -> 
   put(1,"One"), 
   put(2,"Two"), 
   io:fwrite("~p~n",[get()]).

Output

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

[{2,"Two"},{1,"One"}]

Next Topic : Click Here

This Post Has 2 Comments

Leave a Reply