Skip to content

Instantly share code, notes, and snippets.

@mokele
Created November 6, 2012 18:38
Show Gist options
  • Save mokele/4026611 to your computer and use it in GitHub Desktop.
Save mokele/4026611 to your computer and use it in GitHub Desktop.
main([N]) ->
loop(decrement(list_to_integer(N))).
loop(stop) ->
ok;
loop(F) ->
loop(F()).
decrement(0) -> stop;
decrement(N) ->
io:format("N ~p~n", [N]),
fun() -> decrement(N - 1) end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment