mirror of
https://github.com/Xevion/exercism.git
synced 2025-12-15 02:11:44 -06:00
add hello world properly, add rna-transcription (elixir is neat!)
This commit is contained in:
9
elixir/hello-world/lib/hello_world.ex
Normal file
9
elixir/hello-world/lib/hello_world.ex
Normal file
@@ -0,0 +1,9 @@
|
||||
defmodule HelloWorld do
|
||||
@doc """
|
||||
Simply returns "Hello, World!"
|
||||
"""
|
||||
@spec hello :: String.t()
|
||||
def hello do
|
||||
"Hello, World!"
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user