Add prototype for reading files

This commit is contained in:
2025-01-24 15:00:10 +01:00
parent f47f2e738f
commit cfcd98a239
3 changed files with 77 additions and 0 deletions
+4
View File
@@ -1,9 +1,13 @@
program main
use WebServer, only: get_progress
use FileReader, only: read_file
use Greeter, only: say_hello
implicit none
character, allocatable :: Data
call say_hello()
call get_progress()
call read_file("/home/skingging/Documents/Projects/Fortran/Web-Server-In-Fortran/html/index.html", Data)
end program main