blob: a4af97e12cf800d4e906b98590e0a76889429de7 [file] [log] [blame]
subroutine hmmm
do 10 i = 1, 5
print *, i !<<<<<START
if (i .gt. 3) then
print *, i * 10
end if !<<<<<END
print *, i
10 continue
end subroutine
program main; call hmmm; call flush; stop; end program