For example,
defmodule MyApp.Util do
def init(_) do
IO.puts(__METHOD__)
end
end
which should return init
or init/2
or similar?
In addition, is there a way I can see all the variables/reserved vars defined in the scope?
For example,
defmodule MyApp.Util do
def init(_) do
IO.puts(__METHOD__)
end
end
which should return init
or init/2
or similar?
In addition, is there a way I can see all the variables/reserved vars defined in the scope?