como/scripts/lua/commands/init.lua
kjuulh 0c0bbc4282
Some checks failed
continuous-integration/drone/push Build is failing
feat: with lua
Signed-off-by: kjuulh <contact@kjuulh.io>
2023-07-02 12:35:08 +02:00

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