aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test1.f908
1 files changed, 8 insertions, 0 deletions
diff --git a/test/test1.f90 b/test/test1.f90
new file mode 100644
index 0000000..f577b58
--- /dev/null
+++ b/test/test1.f90
@@ -0,0 +1,8 @@
+program test1
+implicit none
+integer :: i
+i = 5+5
+print *, i
+print *, "Fortran test code executed"
+print *, "TESTS PASSED"
+end program