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