1
ListOfFloats = [ Y || {Y,_} <- [string:to_float(X) || X <- ListOfStrings]].
Erlang Convert a list of strings t...
by andrewf,
November 25, 2009 11:25,
1 refactoring
1 2 3 4
-module(word_split). -include_lib("eunit/include/eunit.hrl"). -compile( export_all ). ...
Erlang Eight Kata
Programs make from one big ...
1 2 3 4
-module(prime). -export([main/0, print_if_prime/0]). ...
Erlang Experimental Prime Number G...
The is the results of an ex...
1 2 3
-module(endsrename). ...
Erlang Nintendo DS roms renamer
by edbond,
July 16, 2008 13:00,
No refactoring, tagged with erlang, nintendo, ds, nintendo ds, rename, otp
Nintendo DS roms and saves ...
Is there a nicer way to 'co...