This is the code i am running in an online compiler
-module(helloworld).
-export([start/0, call/2]).
start() ->
% error in the below line as syntax error before: ')'
Pid = spawn(?MODULE, call, ["hello","world"] ),
io:fwrite("~p",[Pid]).
call(Arg1, Arg2) ->
io:format("~p ~p~n", [Arg1, Arg2]).
I tried erlang compiler online in
tutorialspoint
and can reproduce problem. I guess it got some problem in compiler, it's not your fault, just continue investigateErlang
:)You can change to this compiler online
//Edit: The issue may become from editer of
tutorialspoint
. It makes compiler don't understand functionspawn/3
, please add double quoute''
forspawn/3
function like below, It will compile and run: