Question: Can I output to console withjout a new line

Is it possible to output to the console without a new line being added. The code:

for x in [1,2,3,4] do lprint(x) end do

prints each number on a separate line. I want to print them all on the same line.

Please Wait...