-module(word_split).
-include_lib("eunit/include/eunit.hrl").
-compile( export_all ).
...
Erlang Eight Kata
Programs make from one big ...
def prem(s,nx = [])
return nx.join if s.empty?
s.collect { |b| prem(s-[b],nx+[b]) }.flatten
...
Ruby Erlang Riddle for Rubists
Originally published at htt...
-module(prime). -export([main/0, print_if_prime/0]). ...
Erlang Experimental Prime Number G...
The is the results of an ex...
-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 it possible once refacto...