octacian 3c2fa52b4f OctOS: Add echo command
Prints text to the command line.
2017-03-28 16:26:26 -07:00

5 lines
75 B
Lua

local params = ...
local text = (table.concat(params, " "))
print(text)