Sign in
eclipse
/
ptp
/
org.eclipse.photran
/
6df6cffdd4293044abe489eada02a2c34e14b447
/
.
/
org.eclipse.photran.core.vpg.tests
/
refactoring-test-code
/
extract-procedure
/
test05-parameter.f90
blob: def65e6d2b2886de8056cfceccab0e760d4fdde8 [
file
] [
log
] [
blame
]
subroutine prob
integer
,
parameter
::
SIZE
=
5
real
::
matrix
(
SIZE
,
SIZE
)
matrix
(:,
:)
=
0.0
!<<<<<
START
!<<<<<
END
print
*,
matrix
end
subroutine
program main
;
call prob
;
call flush
;
stop
;
end
program