lune/test.luau
Erica Marigold 8ce47806eb
feat: impl readToEnd convenience method for reader
Also rename success key in table to be "ok", so that it is consistent
with process.exec.
2024-06-09 13:05:14 +05:30

7 lines
No EOL
157 B
Lua

local process = require("@lune/process")
local a = process.spawn("echo", {"hello"})
print(a)
print(buffer.tostring(a.stdout:readToEnd()))
print(a.status())