Advertisement
Guest User

Untitled

a guest
Jan 5th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Erlang 0.27 KB | None | 0 0
  1. -module(compte).
  2. -compile(export_all).
  3.  
  4. compte(_,[]) ->
  5.     0;
  6. compte(X, [X | Tail]) ->
  7.     compte(X, Tail) + 1;
  8. compte(X, [_ | Tail]) ->
  9.     compte(X, Tail).
  10.  
  11. main() ->
  12.     compte(1, [1,2,3,1,1]).
  13.  
  14. % Excercice 1 - a
  15. % A executer
  16. % compte:main().
  17. %
  18. % resultat : 3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement