Skip to content

Instantly share code, notes, and snippets.

@Devalo
Created May 11, 2016 15:31
Show Gist options
  • Save Devalo/e12456fee19fd7c0ecb9f311c5e5bce1 to your computer and use it in GitHub Desktop.
Save Devalo/e12456fee19fd7c0ecb9f311c5e5bce1 to your computer and use it in GitHub Desktop.
defmodule NaturalNums do
def print(1), do: IO.puts(1)
def print(n) do
print(n - 1)
IO.puts(n)
end
end
@ciaran
Copy link

ciaran commented May 11, 2016

defmodule NaturalNums do
  def print(1), do: IO.puts(1)

  def print(2) do
    print(1)
    IO.puts(2)
  end

  def print(3) do
    print(2)
    IO.puts(3)
  end
end

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment