Files
HyperionOS/Src/hysh/bin/yes
2026-03-06 09:57:45 -05:00

9 lines
147 B
Plaintext

--:Minify:--
local args = {...}
while true do
if #args == 0 then
print("y")
else
print(table.concat(args, " "))
end
end