问题
This is my Elixir code.
defmodule ErlProcess do
def receiver do
receive do
{:sayHello, msg}->sender<-{:ok, "ok"}
end
end
end
But it gives this error.
** (CompileError) spawn.exs:4: function '<-'/2 undefined
(stdlib) lists.erl:1323: :lists.foreach/2
(stdlib) erl_eval.erl:569: :erl_eval.do_apply/6
(elixir) src/elixir.erl:140: :elixir.eval_forms/4
(elixir) src/elixir_lexical.erl:17: :elixir_lexical.run/2
How to fix this?
回答1:
pid <- msg
was removed, please send pid, msg
instead.
来源:https://stackoverflow.com/questions/22587524/function-2-undefined-error-in-receive-block-elixir