Skip to content

Instantly share code, notes, and snippets.

@zacck-zz
Created October 24, 2017 18:54
Show Gist options
  • Save zacck-zz/786c31ec7309eb8e27440c2aa4135177 to your computer and use it in GitHub Desktop.
Save zacck-zz/786c31ec7309eb8e27440c2aa4135177 to your computer and use it in GitHub Desktop.
defmodule Application.Person do
defstruct first_name: "", second_name: "" age: nil, height: ""
@doc ~S"""
returns a persons full name
"""
def fullname(person) do
"#{person.firstname} #{person.second_name}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment