Skip to content

Instantly share code, notes, and snippets.

@sifue
Created April 28, 2014 12:18
Show Gist options
  • Select an option

  • Save sifue/11370115 to your computer and use it in GitHub Desktop.

Select an option

Save sifue/11370115 to your computer and use it in GitHub Desktop.
geometory.erl
-module(geometory).
-export([area/1]).
area({rectangle, Width, Ht}) -> Width * Ht;
area({circle, R}) -> 3.14159 * R * R.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment