Added e.elixir

This commit is contained in:
Gopal Sharma 2018-12-10 14:56:23 +05:30 committed by GitHub
parent 351c6c7802
commit c425e7dc1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

8
e.elixir Normal file
View File

@ -0,0 +1,8 @@
defmodule E do
def e(e,n) do
IO.puts e
e(e, n + 1)
end
end
E.e("e", 1)