10 lines
156 B
Fortran
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
|