Skip to content

Instantly share code, notes, and snippets.

@BrooklinJazz
Created June 8, 2021 01:10
Show Gist options
  • Save BrooklinJazz/a5989a22d94a86d8b8bfd81ad4637114 to your computer and use it in GitHub Desktop.
Save BrooklinJazz/a5989a22d94a86d8b8bfd81ad4637114 to your computer and use it in GitHub Desktop.
Elixir example with no brackets
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