File: test_nestedloop.pro

package info (click to toggle)
gnudatalanguage 0.9.2-4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 15,212 kB
  • sloc: cpp: 114,857; sh: 11,170; makefile: 362; awk: 18; python: 6; ansic: 4
file content (11 lines) | stat: -rw-r--r-- 189 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
pro test_nestedloop
  for i=0, 0 do begin
    for j=0, 1 do begin
      if i eq 0 then continue
    endfor
    a = 1
  endfor
  if ~keyword_set(a) then begin
    exit, status=1
  endif
end