v0.6.0 - Added shell parser, echo command and some other minor tweaks.

This commit is contained in:
TheWahlolly
2025-04-26 12:38:05 +03:00
parent d220b9d648
commit 64a761fdde
7 changed files with 90 additions and 11 deletions
+7
View File
@@ -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)