kjuulh
0c0bbc4282
Some checks failed
continuous-integration/drone/push Build is failing
Signed-off-by: kjuulh <contact@kjuulh.io>
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
|