File: missing_until_in_for.yab

package info (click to toggle)
yabasic 1%3A2.91.1-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 4,168 kB
  • sloc: ansic: 12,434; sh: 4,417; makefile: 21
file content (13 lines) | stat: -rwxr-xr-x 394 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
#expect#---Error in missing_until_in_for.yab, line 13:
#expect#---Error: a closing until is expected before next
#expect#   next
#expect#   ^~~~
#expect#---Error: repeat-loop starting at line 12 has seen no 'until' yet
#expect#   next
#expect#   ^~~~
#expect#---Error: Couldn't parse program
#expect#---Error: Program not executed
for a=1 to 2
  REM    The next line has no until
  repeat
next