Skip to content

Instantly share code, notes, and snippets.

@volgar1x
Created December 11, 2013 18:14
Show Gist options
  • Save volgar1x/7915566 to your computer and use it in GitHub Desktop.
Save volgar1x/7915566 to your computer and use it in GitHub Desktop.
-module (demo).
-export ([taille/1]).
-export ([somme/1]).
taille([]) -> 0.
taille([_|Tail]) -> 1 + taille(Tail).
somme([]) -> 0.
somme([Head|Tail]) -> Head + somme(Tail).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment