scrolling windows

This commit is contained in:
kepler155c@gmail.com
2016-12-14 13:54:13 -05:00
parent 48f16ce2c7
commit e25f4f9319
7 changed files with 87 additions and 97 deletions

View File

@@ -1,6 +1,2 @@
local args = { ... }
local options = ''
for _,v in pairs(args) do
options = options .. ' ' .. v
end
shell.run('pastebin run sj4VMVJj' .. options)
local options = table.concat({ ... }, ' ')
shell.run('pastebin run sj4VMVJj ' .. options)