simo2409 (owner)

Revisions

gist: 113508 Download_button fork
public
Public Clone URL: git://gist.github.com/113508.git
modules2.erl
1
2
3
4
5
-module(cost).
-export([total/1]).
 
total([{_, Money}|T]) -> Money + total(T);
total([]) -> 0.