feat: with lua
Some checks failed
continuous-integration/drone/push Build is failing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-07-02 12:35:08 +02:00
parent 3e5309e1e6
commit 0c0bbc4282
4 changed files with 25 additions and 3 deletions

View File

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