如何在Elixir中指定当前正在编译的文件?在
Ruby中,我可以使用__FILE__变量. Elixir中是否有相同的名称?
这是我的脚本:
IO.puts “#{__FILE__}”
这是输出:
** (CompileError) ModulesAndFunctions-7.exs:3: undefined function __FILE__/0 (elixir) expanding macro: Kernel.to_string/1 ModulesAndFunctions-7.exs:3: (file)
解决方法
你可以简单地使用
__ENV__.file