(11-10-2022, 01:46 PM)a740g Wrote: @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.
Code: (Select All)Print 10 + 20
Print 10 Or 20
In QB64-PE, it prints
30
30
And in QBJS, it prints
30
10
I'm pretty sure that you'll find QBJS more compatible with QB64PE 99.9% of the time, but for the occasional oddball things that BAM can handle:
BAM: