Print to console without newline

BlitzMax Forums/BlitzMax Programming/Print to console without newline

Pineapple(Posted 2010) [#1]
Is this possible without having to mess with importing C/C++ standard io files?


Zeke(Posted 2010) [#2]
WriteStdout "Hello "
WriteStdout "World!"



Pineapple(Posted 2010) [#3]
Thank you!


ziggy(Posted 2010) [#4]
It's a good idea to flush the Standard I/O stream at the end of any write operation:
StandardIOStream.WriteString("Hello ")
StandardIOStream.WriteString("world!")
StandardIOStream.Flush()