From 016af83350e757e728d6b5def841527e4a17c008 Mon Sep 17 00:00:00 2001 From: rasmus Date: Fri, 31 Jan 2025 16:50:55 +0100 Subject: [PATCH] Add hello world Fortran page --- src/components/About.vue | 4 ++- .../Fortran/Fortran_Hello_World.vue | 33 +++++++++++++++++++ src/components/Fortran/Fortran_Index.vue | 19 ++++++++--- .../Fortran/Fortran_Reading_Files.vue | 4 +++ src/main.ts | 2 ++ 5 files changed, 57 insertions(+), 5 deletions(-) create mode 100644 src/components/Fortran/Fortran_Hello_World.vue diff --git a/src/components/About.vue b/src/components/About.vue index aac3c4b..b11412b 100644 --- a/src/components/About.vue +++ b/src/components/About.vue @@ -43,7 +43,9 @@

Not bad huh? The things you see when everyone is asleep.


My humble bike. -

And this is my humble bike. It has taken me many places, and it's still going strong.

+

And this is my humble bike. It has taken me many places, and it's still going strong. The odometer no longer works, + so I just use my FitBit Charge 5 instead. I've modeled and 3D printed the two orange bottle holders myself, on my + Original Prusa MK3S+.

\ No newline at end of file diff --git a/src/components/Fortran/Fortran_Hello_World.vue b/src/components/Fortran/Fortran_Hello_World.vue new file mode 100644 index 0000000..fb8887a --- /dev/null +++ b/src/components/Fortran/Fortran_Hello_World.vue @@ -0,0 +1,33 @@ + + + \ No newline at end of file diff --git a/src/components/Fortran/Fortran_Index.vue b/src/components/Fortran/Fortran_Index.vue index fd14b70..ec4025a 100644 --- a/src/components/Fortran/Fortran_Index.vue +++ b/src/components/Fortran/Fortran_Index.vue @@ -6,12 +6,23 @@

Fortran


-

Fortran is an interesting language. It's one of the older languages still in use to this very day.

+

Fortran, which stands for Formula Translation, is indeed an interesting language with a rich history. As one of + the oldest programming languages still in active use today, it has played a significant role in shaping the + development of modern computing. First introduced in the 1950s by a team at IBM led by John Backus, Fortran was + designed specifically for scientific and engineering applications, where its ability to efficiently handle + complex numerical computations proved invaluable.


+

+ Over the years, Fortran has undergone numerous updates and revisions, with the most recent standard being Fortran + 2018. Despite the rise of newer languages like C++, Java, and Python, Fortran remains a popular choice in many + fields, including physics, chemistry, meteorology, and engineering, due to its performance. Even Nvidia and Intel + are still developing their compilers, as well as FOSS compilers such as gfortran and lfortran.

+
+ +

Table of contents:

- - \ No newline at end of file diff --git a/src/components/Fortran/Fortran_Reading_Files.vue b/src/components/Fortran/Fortran_Reading_Files.vue index 5d00924..305082b 100644 --- a/src/components/Fortran/Fortran_Reading_Files.vue +++ b/src/components/Fortran/Fortran_Reading_Files.vue @@ -7,5 +7,9 @@

Reading A File In Fortran 90


+ + + + \ No newline at end of file diff --git a/src/main.ts b/src/main.ts index 5470033..fdf9169 100644 --- a/src/main.ts +++ b/src/main.ts @@ -8,6 +8,7 @@ import FortranIndex from "./components/Fortran/Fortran_Index.vue"; import PascalIndex from "./components/Pascal/Pascal_Index.vue"; import LispIndex from "./components/Lisp/Lisp_Index.vue"; import FortranReadingFiles from "./components/Fortran/Fortran_Reading_Files.vue"; +import FortranHelloWorld from "./components/Fortran/Fortran_Hello_World.vue"; const router = createRouter({ history: createWebHistory(), @@ -16,6 +17,7 @@ const router = createRouter({ {path: '/About', name: 'About', component: About}, {path: '/Fortran', name: 'Fortran', component: FortranIndex}, + {path: '/Fortran/HelloWorld', name: 'HelloWorld', component: FortranHelloWorld}, {path: '/Fortran/ReadingAFile', name: 'ReadingAFile', component: FortranReadingFiles}, {path: '/Pascal', name: 'Pascal', component: PascalIndex},