Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
program getdir
character*32 fname
integer dirlist
parameter (dirlist = 10)
call system ('dir /b > dirlist.txt')
open (dirlist, file='dirlist.txt', status='old')
10 continue
read (dirlist, *, end = 20) fname
write (*,*) fname
goto 10
20 continue
close (dirlist)
stop
end