Created
June 8, 2021 01:10
-
-
Save BrooklinJazz/a5989a22d94a86d8b8bfd81ad4637114 to your computer and use it in GitHub Desktop.
Elixir example with no brackets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule Greeting do | |
def say_hello name, name2 do | |
"Hello #{name}, Hi #{name2}" | |
end | |
end | |
Greeting.say_hello "Bob", "Bill" # Hello Bob, Hi Bill |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment