Posted: 06:50am 06 May 2026
Copy link to clipboard |
ville56 Guru

|
|
|
@Peter, Beautify spoils labels ... in the attached code, after edit/^A/F2 there are spaces in front of the label b_loop: inserted and the code does fail with [11] If in_str <> "" Then GoTo b_loop Error : Cannot find label Interestingly, there are seemingly 2 character positions inserted but if there is only one char to remove. The code runs again if the inserted chars (or char?) are removed. Version is: PicoMite MMBasic RP2350B V6.03.00RC1 failing code is: ' OPTION EXPLICIT OPTION DEFAULT NONE Option tracecache on 128 b_test("test") end ' ------------ END main ----------------------------------
sub b_test(in_str as string)
b_loop: print "in b_loop" pause 300 if in_str <> "" then goto b_loop
end sub
|