ilsan kimtricolor-ilsan-kim.com·Jul 22, 2024Making Simple TCP Echoing Server Using Elixir GenServerlib/tcptest/echo/server.ex defmodule Tcptest.Server do use GenServer def start_link(_) do GenServer.start_link(__MODULE__, :no_args, name: __MODULE__) end def init(:no_args) do {:ok, socket} = :gen_tcp.listen(2566, [:binary, p...ElixirAdd a thoughtful commentNo comments yetBe the first to start the conversation.