Create e.exs

This commit is contained in:
Austin Lanari 2018-12-11 10:56:39 -08:00 committed by GitHub
parent fb479d3646
commit 1203b0889e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

7
e.exs Normal file
View File

@ -0,0 +1,7 @@
#!/usr/local/bin/elixir
defmodule E do
def e, do: (IO.write("e"); e())
end
E.e()