11-10-2022, 01:46 PM
@dbox I use QBJS to try out ideas and code that I end up using elsewhere. It is an excellent resource for me that way. Thank you.
I have discovered that the following snippet in QBJS outputs different results compared to QB64-PE.
In QB64-PE, it prints
30
30
And in QBJS, it prints
30
10
I have discovered that the following snippet in QBJS outputs different results compared to QB64-PE.
Code: (Select All)
Print 10 + 20
Print 10 Or 20
In QB64-PE, it prints
30
30
And in QBJS, it prints
30
10