Skip to content

Instantly share code, notes, and snippets.

@BrooklinJazz
Created June 7, 2021 18:08
Show Gist options
  • Select an option

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

Select an option

Save BrooklinJazz/e79a7d8eed7d20ff52aa5e85a0cc7fc4 to your computer and use it in GitHub Desktop.
Calling a function from inside the same module
defmodule Greeting do
def main do
say_hello()
end
def say_hello do
"Hello"
end
end
Greeting.main() # Hello
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment