Sign in
eclipse
/
ptp
/
org.eclipse.photran
/
6df6cffdd4293044abe489eada02a2c34e14b447
/
.
/
org.eclipse.photran.core.vpg.tests
/
refactoring-test-code
/
extract-procedure
/
test01-simple.f90.result
blob: d85423319f14973192925d49ed36bb8a083b80ae [
file
] [
log
] [
blame
]
subroutine
sub
call new_procedure
()
end
subroutine
subroutine new_procedure
()
implicit
none
print
*,
"Hello"
!<<<<<
START
!<<<<<
END
end
subroutine
program main
;
call
sub
;
call flush
;
stop
;
end
program