echo server

This commit is contained in:
2024-02-08 22:42:39 +01:00
commit 8bd06a67ed
10 changed files with 248 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
defmodule ProtohackersTest do
use ExUnit.Case
doctest Protohackers
test "greets the world" do
assert Protohackers.hello() == :world
end
end

1
test/test_helper.exs Normal file
View File

@@ -0,0 +1 @@
ExUnit.start()