Skip to content

Instantly share code, notes, and snippets.

@DanielVartanov
Created March 19, 2016 15:28
Show Gist options
  • Save DanielVartanov/55393992d204094a0fc2 to your computer and use it in GitHub Desktop.
Save DanielVartanov/55393992d204094a0fc2 to your computer and use it in GitHub Desktop.
defmodule NTimes do
def run(0, function) do
function.()
end
def run(n, function) do
function.()
run(n - 1, function)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment