Created
June 8, 2021 00:12
-
-
Save BrooklinJazz/fbec694efad33667461ba9942f9b3adb to your computer and use it in GitHub Desktop.
Default argument example in elixir
This file contains hidden or 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 \\ "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