Tested Fortran

This commit is contained in:
ilsix 2024-04-04 22:53:43 +02:00
parent 8ac46f8ce0
commit 86dd6b1975
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,3 @@
program hello program hello
print *, "Hello World!" print *, "Hello World!"
end program end program

3
fortran/test.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
gfortran helloworld.f90 -o helloworld
./helloworld