File: break_error.yab

package info (click to toggle)
yabasic 1%3A2.78.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,356 kB
  • ctags: 1,575
  • sloc: ansic: 10,420; sh: 9,406; makefile: 17
file content (6 lines) | stat: -rw-r--r-- 165 bytes parent folder | download
1
2
3
4
5
6
#---Fatal in break_error.yab, line 4: break has left program (loop_nesting=-2, switch_nesting=0)
for a=0 to 4
  for b=0 to 4
    if (a*b=12) break 3
  next b
next a