Skip to content

Instantly share code, notes, and snippets.

@BrooklinJazz
Created June 8, 2021 00:50
Show Gist options
  • Save BrooklinJazz/75ba3e9828e9b099744adeb744c9cbfc to your computer and use it in GitHub Desktop.
Save BrooklinJazz/75ba3e9828e9b099744adeb744c9cbfc to your computer and use it in GitHub Desktop.
Elixir import example
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