Files
HyperionOS/Src/Hyperion-bash/bin/yes
2026-03-02 07:27: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