You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Please check if the PR fulfills these requirements:
* [X] Tests for the changes have been added/updated (if possible)
* [X] Documentation has been updated/added if relevant
### What is the current behavior?
<!-- List issue if it fixes/closes/implements one using the "Fixes
#<number>" or "Closes #<number>" syntax -->
N/A
### What is the new behavior?
Can now run Erlang files
### Other information?
<!-- Is this a breaking change? -->
<!-- How did you test -->
I tested it using the code below
```erl
-module(concurrency).
-export([start/0, process/0]).
start() ->
Pid = spawn(concurrency, process, []),
Pid ! {self(), "Hello"},
receive
{Pid, Msg} -> io:format("Received message: ~p~n", [Msg])
end.
process() ->
receive
{Sender, Msg} ->
Sender ! {self(), Msg}
end.
```

0 commit comments