add hello world properly, add rna-transcription (elixir is neat!)

This commit is contained in:
Xevion
2021-01-18 01:15:35 -06:00
parent 0c18055cd3
commit 4c28e4d439
14 changed files with 239 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
defmodule HelloWorldTest do
use ExUnit.Case
test "says 'Hello, World!'" do
assert HelloWorld.hello() == "Hello, World!"
end
end

View File

@@ -0,0 +1,2 @@
ExUnit.start()
ExUnit.configure(exclude: :pending, trace: true)