v0.6.0 - Added shell parser, echo command and some other minor tweaks.
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
local args = {...}
|
||||
local concatText = args[1]
|
||||
table.remove(args, 1)
|
||||
for _, item in pairs(args) do
|
||||
concatText = concatText .. " " .. item
|
||||
end
|
||||
print(concatText)
|
||||
Reference in New Issue
Block a user