Sign in
eclipse
/
ptp
/
org.eclipse.photran
/
6df6cffdd4293044abe489eada02a2c34e14b447
/
.
/
org.eclipse.photran.core.vpg.tests
/
refactoring-test-code
/
extract-procedure
/
test04-in-loop.f90
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