From c83aa52312a234cfb4598bc81b1d17516a45b4b5 Mon Sep 17 00:00:00 2001 From: DouweRavers Date: Thu, 28 Nov 2024 13:52:29 +0100 Subject: [PATCH] Setup fortran. Test with hello world program. --- fortran setup/main.f95 | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 fortran setup/main.f95 diff --git a/fortran setup/main.f95 b/fortran setup/main.f95 new file mode 100644 index 0000000..1be38f6 --- /dev/null +++ b/fortran setup/main.f95 @@ -0,0 +1,4 @@ +program main + implicit none + write(*,*) "Hello world!" +end program main