gulamf opened this issue 2 years ago · 2 comments
Hi, is it possible to print text without a new line? Thanks.
Hi @gulamf 👋
Yes, you can call write on io.stdout().
write
io.stdout()
stdout = io.stdout() stdout.write 'abc' stdout.write 'def' # abcdef
Thanks.