Web-Server-In-Fortran/src/Greeter.f90

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