summaryrefslogtreecommitdiff
path: root/lib/tools/test/eprof_SUITE_data/eprof_test.erl
blob: 33c428e893a25a5a32baccc308515639c17ca89b (plain)
1
2
3
4
5
6
7
8
9
-module(eprof_test).
-export([go/1]).

go(N) ->
    0 = dec(N),
    ok.

dec(0) -> 0;
dec(N) -> dec(N - 1).