Skip to content

Instantly share code, notes, and snippets.

@Adzz
Last active May 21, 2018 13:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Adzz/81473fff32ccbafc8a8ac1306778a862 to your computer and use it in GitHub Desktop.
Save Adzz/81473fff32ccbafc8a8ac1306778a862 to your computer and use it in GitHub Desktop.
defmodule Square do
defstruct [:side]
def area(%Square{side: side}) do
side * side
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment