Skip to content

Instantly share code, notes, and snippets.

@hmaurer
Forked from volgar1x/demo.erl
Created December 11, 2013 18:16
Show Gist options
  • Save hmaurer/7915596 to your computer and use it in GitHub Desktop.
Save hmaurer/7915596 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