Skip to content

Instantly share code, notes, and snippets.

@olvap
Created February 10, 2017 00:20
Show Gist options
  • Save olvap/1ec9a246b1c56025a1af279f08e7f344 to your computer and use it in GitHub Desktop.
Save olvap/1ec9a246b1c56025a1af279f08e7f344 to your computer and use it in GitHub Desktop.
defmodule Greeter do
def factorial(number) do
total = 1
if number > 1 do
total = number * factorial(number - 1)
else
number
end
total
end
end
IO.puts Greeter.factorial(3)
I cant screen share.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment