9 lines
126 B
Lua
9 lines
126 B
Lua
-- Lua test file
|
|
|
|
function ithecolors( c )
|
|
io.write("some shit from lua\n")
|
|
-- io.write(c)
|
|
io.write("\n")
|
|
end
|
|
|
|
ithecolors()
|