07-01-2024, 09:42 PM
(07-01-2024, 08:48 PM)DSMan195276 Wrote: If you add `Optiion _Explicit` to your program you might realize what the issue isNEVER write QB64 programs without the first line of your code being:
OPTION _EXPLICIT
I have been saved countless times from typos by this one line of code.
It should be the default behavior of the IDE (in my opinion) with an option to turn it off when viewing QB64 or legacy code written by someone else that didn't use it:
_EXPLICIT _OFF
for example.