-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPROJECT_LANG_1.f90
37 lines (26 loc) · 1.63 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
25
26
27
28
29
30
31
32
33
34
35
36
37
C Start of script
C I chose FORTRAN as the first project language file for this project (Seanpm2001/AGRAN-Programming language)(Seanpm2001/GRANNY-Programming-language) as FORTRAN is the most significant influence on the projects language, and is ordered 1st out of 4 in its implementation. It is getting its own project language file, starting here.
program projectLangOne
print *, "Project language file 1"
print *, "For: seanpm2001/AGRAN-Programming language"
print *, "or: seanpm2001/GRANNY-Programming-language"
print *, "About:"
print *, "I chose FORTRAN as the first project language file for this project (Seanpm2001/AGRAN-Programming language)(Seanpm2001/GRANNY-Programming-language) as FORTRAN is the most significant influence on the projects language, and is ordered 1st out of 4 in its implementation. It is getting its own project language file, starting here."
pause
end program prolangone
return projectLangOne
return 0
pause
STOP
END
C output:
C Project language file 1
C For: seanpm2001/AGRAN-Programming language"
C or: seanpm2001/GRANNY-Programming-language"
C About:
C I chose FORTRAN as the first project language file for this project (Seanpm2001/AGRAN-Programming language)(Seanpm2001/GRANNY-Programming0language) as FORTRAN is the most significant influence on the projects language, and is ordered 1st out of 4 in its implementation. It is getting its own project language file, starting here.
C File info
C File type: FORTRAN 90 source file (*.f90, *.f, *.for)
C File version: 1 (2022, Wednesday, August 3rd at 4:18 pm PST)
C Line count (including blank lines and compiler line): 38
C End of script