[Fortran] syntaxhighlighter_viewsource syntaxhighlighter_copycode
module global
implicit none
contains
subroutine fun(a)
real a(:,:)
a = 3
End subroutine
end module
Program www_fcode_cn
Implicit None
real a(3,2)
use global
Write (*, '(6f3.0)') a
end program
[Fortran] syntaxhighlighter_viewsource syntaxhighlighter_copycode
module global
implicit none
contains
subroutine fun(a)
real a(:,:)
a = 3
End subroutine
end module
Program www_fcode_cn
use global
Implicit None
real a(3,2)
Write (*, '(6f3.0)') a
end program