Writeline Question

Blitz3D Forums/Blitz3D Beginners Area/Writeline Question

Gauge(Posted 2003) [#1]
Redone post:
Why does this happen
comm1$="none"
comm2$="not"
comm3$="never"
message$=comm1$+" "+comm2$+" "+comm3$
print "aaa:"+message$

when printedor with writeline i get

aaa: nonotnever

(yeah the spaces come in front of the string!
it should look like aaa:no not never


Odds On(Posted 2003) [#2]
Works for me in Blitz3d and BlitzPlus.

Command:also none not


WolRon(Posted 2003) [#3]
The code you typed prints "aaa:none not never"
which is exactly the way it's supposed to work.