7LMA655YNWFCPB7JQ7PAVRTBA3SRZXIKUPUB6KI6DRPWKV3DRS4AC
def compile(data, filename, modulename) do
def compile(filepath) do
content = File.read!(filepath)
modulename = filepath |> Path.basename() |> Path.rootname() |> :erlang.binary_to_atom()
compile(content, filepath, modulename)
end
def compile(data, filepath, modulename) do