Actions
Bug #430
closedMATCH command causes internal error.
Start date:
08/04/2020
Due date:
% Done:
0%
Estimated time:
Affected version:
Description
Lots of compile errors if the program includes 'match'
e.g.
dim search$(15)
for x=1 to 15
search$(x)=chr$(rnd(25)+65)
print search$(x);" ";
next x
print
sort search$(0)
for x=1 to 15
print search$(x);" ";
next x
print:print "Search. Blank to continue."
b$="x"
while b$<>""
input b$
b$=upper$(b$)
print match(search$(0),b$)
wend
Commenting out the 'match' line lets it run.
Updated by Francois Lionet about 4 years ago
- Assignee changed from AOZ Studio Team to Francois Lionet
- Target version set to 0.9.9.4-r2
Fixed!
Updated by Francois Lionet about 4 years ago
- Status changed from New to Resolved
Updated by Brian Flanagan about 4 years ago
- Status changed from Resolved to Closed
Re-tested on Beta RC2. Works!
Actions