Skip to content

Instantly share code, notes, and snippets.

@zkessin
Created August 24, 2012 20:45
Show Gist options
  • Save zkessin/3455423 to your computer and use it in GitHub Desktop.
Save zkessin/3455423 to your computer and use it in GitHub Desktop.
square.erl
-module(square).
-export([square/1]).
square(X) ->
X * X.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment