Skip to content

Commit

Permalink
Linking to the documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
algogrit committed Mar 20, 2024
1 parent 2a857b0 commit e849bd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/07-processes/echo.exs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ defmodule Echo do
receive do
{:io_request, caller, reply_as, msg} ->
IO.inspect msg
send(caller, {:io_reply, reply_as, msg})
send(caller, {:io_reply, reply_as, msg}) # Refer: https://www.erlang.org/doc/apps/stdlib/io_protocol.html
loop()
msg ->
IO.inspect msg
Expand Down

0 comments on commit e849bd1

Please sign in to comment.