Skip to content

Instantly share code, notes, and snippets.

@BrooklinJazz
Last active June 8, 2021 00:29
Show Gist options
  • Save BrooklinJazz/de354888d62b4f8a6856e2aa2b6926fe to your computer and use it in GitHub Desktop.
Save BrooklinJazz/de354888d62b4f8a6856e2aa2b6926fe to your computer and use it in GitHub Desktop.
Elixir example of alias
defmodule Me do
defmodule Info do
def name do
"Brooklin"
end
end
end
defmodule Greeting do
alias Me.Info, as: Info
# You can more conveniently write the above as:
# alias Me.Info
def say_hello do
"Hello " <> Info.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