Created
October 24, 2017 18:54
-
-
Save zacck-zz/786c31ec7309eb8e27440c2aa4135177 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 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