Skip to content

Instantly share code, notes, and snippets.

@zacck-zz
Created October 24, 2017 18:48
Show Gist options
  • Save zacck-zz/b8d9a2a1aaab40e3acd0c78dd92e0431 to your computer and use it in GitHub Desktop.
Save zacck-zz/b8d9a2a1aaab40e3acd0c78dd92e0431 to your computer and use it in GitHub Desktop.
defmodule Application.Profile do
alias Application.Person
@doc ~S"""
This prints the persons profile
"""
def log(%Person{} = person) do
IO.puts person
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment