From 3b8c64c04043dfb0bdf1ce4e06ef5f91247dfd2c Mon Sep 17 00:00:00 2001 From: "Sean P. Myrick V19.1.7.2" Date: Fri, 31 May 2024 14:24:12 -0700 Subject: [PATCH] PROJECT_LANG_1_V1.for --- .../Fortran-Fortress/PROJECT_LANG_1_V1.for | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Git-Templates/ProjectLanguageFiles/Basic_projects/Fortran-Fortress/PROJECT_LANG_1_V1.for diff --git a/Git-Templates/ProjectLanguageFiles/Basic_projects/Fortran-Fortress/PROJECT_LANG_1_V1.for b/Git-Templates/ProjectLanguageFiles/Basic_projects/Fortran-Fortress/PROJECT_LANG_1_V1.for new file mode 100644 index 0000000000..151aab858c --- /dev/null +++ b/Git-Templates/ProjectLanguageFiles/Basic_projects/Fortran-Fortress/PROJECT_LANG_1_V1.for @@ -0,0 +1,15 @@ +C Start of script + +C I decided to make FORTRAN the main programming language for this project (FORTRAN FORTRESS) as this project is all about Fortran and playing around with it. The fortress of FORTRAN should be and will be written in Fortran. +program prolang + print *, "I decided to make FORTRAN the main programming language for this project (FORTRAN FORTRESS) as this project is all about Fortran and playing around with it. The fortress of FORTRAN should be and will be written in Fortran." +end program prolang +STOP +END + +C File info +C File type: FORTRAN 90 source file (*.f90, *.f, *.for) +C File version: 1 (Wednesday, June 9th 2021 at 5:43 pm) +C Line count (including blank lines and compiler line): 16 + +C End of script