Fix not reading file correctly

This commit is contained in:
2025-01-24 18:49:27 +01:00
parent cfcd98a239
commit 666aab275c
3 changed files with 11 additions and 8 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
program main
use WebServer, only: get_progress
!use WebServer, only: get_progress
use FileReader, only: read_file
use Greeter, only: say_hello
@@ -8,6 +8,6 @@ program main
character, allocatable :: Data
call say_hello()
call get_progress()
!call get_progress()
call read_file("/home/skingging/Documents/Projects/Fortran/Web-Server-In-Fortran/html/index.html", Data)
end program main