Skip to content

Commit

Permalink
code from day 1
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeChristianson committed Dec 10, 2012
1 parent c49d575 commit 9327940
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Erlang/Day-1/basic.erl
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-module (basic).
-export ([mirror/1]).

mirror(Anything) -> Anything.
6 changes: 6 additions & 0 deletions Erlang/Day-1/matching_function.erl
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
-module (matching_function).
-export ([number/1]).

number(one) -> 1;
number(two) -> 2;
number(three) -> 3.

0 comments on commit 9327940

Please sign in to comment.