rokucommunity / brs

An interpreter for the BrightScript language that runs on non-Roku platforms.
MIT License
4 stars 2 forks source link

Print statement do not print positive numbers with leading space #16

Closed lvcabral closed 9 months ago

lvcabral commented 12 months ago

The print (?) statement when used in telnet do print a leading space on every positive number (unless you use .toStr() method) , negative number shows minus on the leading position.

For example, if you execute:

print "testing" 123

' In Roku it shows:
testing 123
' In brs it shows:
testing123