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,9 @@
defmodule HelloWorld do
@doc """
Simply returns "Hello, World!"
"""
@spec hello :: String.t()
def hello do
"Hello, World!"
end
end