aboutsummaryrefslogtreecommitdiff
path: root/test/test1.f90
blob: f577b58d8b1c580f47137c4932ca51e55aa9eff2 (plain)
1
2
3
4
5
6
7
8
program test1
implicit none
integer :: i
i = 5+5
print *, i
print *, "Fortran test code executed"
print *, "TESTS PASSED"
end program