Created
June 8, 2021 00:50
-
-
Save BrooklinJazz/75ba3e9828e9b099744adeb744c9cbfc to your computer and use it in GitHub Desktop.
Elixir import example
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 Greeting do | |
# syntax: import ModuleName only: [method_name: number_of_parameters] | |
import IO, only: [puts: 1] | |
def print_greeting(name) do | |
puts "Hello " <> name | |
end | |
end | |
Greeting.print_greeting("Brooklin") # Hello Brooklin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment