8 lines
112 B
Fortran
8 lines
112 B
Fortran
module foo
|
|
implicit none
|
|
contains
|
|
subroutine hello()
|
|
print *, 'PASSED'
|
|
end subroutine
|
|
end module
|