summaryrefslogtreecommitdiff
path: root/erlang/count.erl
blob: 72cb37805003bed3cce5cd583ce292acbd1f1c12 (plain) (blame)
1
2
3
4
5
-module(count).
-export([count/1]).

count(10) -> io:fwrite("10~n");
count(N) -> io:fwrite("~b~n", [N]), count(N+1).