916eb8c777
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).