Skip to content

Instantly share code, notes, and snippets.

@BrooklinJazz
Created June 8, 2021 00:12
Show Gist options
  • Select an option

  • Save BrooklinJazz/fbec694efad33667461ba9942f9b3adb to your computer and use it in GitHub Desktop.

Select an option

Save BrooklinJazz/fbec694efad33667461ba9942f9b3adb to your computer and use it in GitHub Desktop.
Default argument example in elixir
defmodule Greeting do
def say_hello(name \\ "Brooklin") do
"Hello #{name}"
end
end
Greeting.say_hello() # Hello Brooklin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment