05-19-2024, 11:28 PM
(05-19-2024, 09:43 PM)Kernelpanic Wrote: I've never read that a jump target a la Goto can contain a point ...A jump target a la GOTO can contain a point with no problem. You heard it here first!
Code: (Select All)
0:
Input "Enter a num =>"; num
On num GOTO 1, 2.2, 3
1:
Print 1
GoTo 0
2.2:
Print 2.2
GoTo 0
3:
Print 3
End
The issue with the "__ASCII_CHR_046__" is just you getting an error report back from the translated name of your variable. Sure, you might call it LABEL.FOO.2, but c doesn't like those dots so much, so it gets translated to become LABEL__ASCII_CHR_046__FOO__ASCII_CHR_046__2 before the c-compiler goes and does its thing.
It's a glitch, sure enough, though it's definitely not a high priority one to deal with, as it doesn't affect anything except the visible error report the IDE gives you.