10 lines
196 B
Fortran
10 lines
196 B
Fortran
module Greeter
|
|
implicit none
|
|
private
|
|
|
|
public :: say_hello
|
|
contains
|
|
subroutine say_hello
|
|
print *, "Hello, WebServer!"
|
|
end subroutine say_hello
|
|
end module Greeter |