Is vwatch reserved for internal/debugging stuff? - Printable Version +- QB64 Phoenix Edition (https://qb64phoenix.com/forum) +-- Forum: QB64 Rising (https://qb64phoenix.com/forum/forumdisplay.php?fid=1) +--- Forum: Code and Stuff (https://qb64phoenix.com/forum/forumdisplay.php?fid=3) +---- Forum: Help Me! (https://qb64phoenix.com/forum/forumdisplay.php?fid=10) +---- Thread: Is vwatch reserved for internal/debugging stuff? (/showthread.php?tid=2094) |
Is vwatch reserved for internal/debugging stuff? - Dav - 10-14-2023 I was making a stop watch thing, couldn't make/use a variable named vwatch. IDE info in the status box says it's a SUB VWATCH. I'm guessing it's an internal name for debugging or something? Has me curious. - Dav RE: Is vwatch reserved for internal/debugging stuff? - RhoSigma - 10-14-2023 (10-14-2023, 08:40 PM)Dav Wrote: I was making a stop watch thing, couldn't make/use a variable named vwatch. IDE info in the status box says it's a SUB VWATCH. I'm guessing it's an internal name for debugging or something? Has me curious. Yes, the name "vwatch" is reserved for the $DEBUG functionality. RE: Is vwatch reserved for internal/debugging stuff? - Dav - 10-14-2023 Thanks. That was a really fast reply. - Dav |