Skip to content

Instantly share code, notes, and snippets.

@oskwazir
Created July 28, 2015 06:15
Show Gist options
  • Select an option

  • Save oskwazir/75b7e33ab684f3875090 to your computer and use it in GitHub Desktop.

Select an option

Save oskwazir/75b7e33ab684f3875090 to your computer and use it in GitHub Desktop.
Functions with pattern matching
-module(functions).
-compile(export_all). %%replace with -export() later!
head([H|_]) -> H.
second([_,X|_]) -> X.
same(X,X) ->
true;
same(_,_) ->
false.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment