Skip to content

Instantly share code, notes, and snippets.

@roobie
Last active December 11, 2015 09:23
Show Gist options
  • Select an option

  • Save roobie/4dbd0090d35bc817f273 to your computer and use it in GitHub Desktop.

Select an option

Save roobie/4dbd0090d35bc817f273 to your computer and use it in GitHub Desktop.
reverse, tail call optimised.
-module(recursive).
reverse(L) ->
reverse_tco([], L).
reverse_tco(Acc, []) ->
Acc;
reverse_tco(Acc, [Head|Tail]) ->
reverse_tco([Head|Acc], Tail).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment