Initial commit

This commit is contained in:
2022-06-22 13:15:43 +02:00
commit 0b318ac0e4
10 changed files with 209 additions and 0 deletions

8
test/genetic_test.exs Normal file
View File

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