Last active
June 8, 2021 00:29
-
-
Save BrooklinJazz/de354888d62b4f8a6856e2aa2b6926fe to your computer and use it in GitHub Desktop.
Elixir example of alias
This file contains 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 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