printgood

-- printgood

local _print = print
function print(...)
    _print(table.concat({...}, ", "))
end

function setup()
    print("Hello World!")
    print(100,200,300,"hello")
end
--->
Hello World!
100, 200, 300, hello

@RonJeffries Heres the way I’ve been doing print to get separation between values. It uses the standard print so nothing needs changing. I just put double quotes “” between each value or variable.

function setup()
    print(100,"",200,"",300,"","hello")
end

yes, i get tired of the typing.

@RonJeffries Normally I use print statements when I need to debug a program. So there isn’t that much typing involved.

me too, but until they fix the jamming bug, this little quickie will give me clean easy debug prints