Skip to content

Instantly share code, notes, and snippets.

@StoneCypher
Created June 2, 2014 05:41
Show Gist options
  • Select an option

  • Save StoneCypher/d643a344845a17cacab3 to your computer and use it in GitHub Desktop.

Select an option

Save StoneCypher/d643a344845a17cacab3 to your computer and use it in GitHub Desktop.
%% teaching the use of a testing library. bad code, do not use or judge
-module(vlp).
-export([
square/1
]).
square(7) -> -2;
square(X) -> X*X.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment