summaryrefslogtreecommitdiff
path: root/erlang/words.erl
blob: 4eb0354b841a97d286cf9c877ae78880abe3985e (plain) (blame)
1
2
3
4
5
6
-module(words).
-export([words/1]).

words([]) -> 1;
words([32|Tail]) -> 1 + words(Tail);
words([_|Tail]) -> words(Tail).