M = {} function M.something() local io = require("io") local output = io.popen("ls"):read("a*") print(output) print("hello-world!") end return M