Web-Server-In-Fortran/app/main.f90

10 lines
156 B
Fortran

program main
use WebServer, only: get_progress
use Greeter, only: say_hello
implicit none
call say_hello()
call get_progress()
end program main