-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPROJECT_LANG_1.f90
24 lines (20 loc) · 1.15 KB
/
PROJECT_LANG_1.f90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
C Start of script
C I decided to make Fortran the main project language file for this project (SNU / 2D / Programming Tools / IDE / Fortran) as this is a Fortran IDE, and it needs its main language to be represented here.
program prolangone
print *, "Project language file 1\n"
print *, "For: SNU/2D/ProgrammingTools/IDE/Fortran\n"
print *, "About:\n"
print *, "I decided to make Fortran the main project language file for this project (SNU / 2D / Programming Tools / IDE / Fortran) as this is a Fortran IDE, and it needs its main language to be represented here.\n"
C output:
C Project language file 1
C For: SNU/2D/ProgrammingTools/IDE/Fortran
C About:
C I decided to make Fortran the main project language file for this project (SNU / 2D / Programming Tools / IDE / Fortran) as this is a Fortran IDE, and it needs its main language to be represented here.
end program prolangone
STOP
END
C File info
C File type: FORTRAN 90 source file (*.f90, *.f, *.for) | Fortran source file (*.f *.f77 *.f90 *.f95 *.for other)
C File version: 1 (2022, Thursday, September 29th at 3:58 pm PST)
C Line count (including blank lines and compiler line): 25
C End of script