From 663ac1cff6cd5070ef737f8c79f86a05972cfb79 Mon Sep 17 00:00:00 2001 From: rasmus Date: Tue, 25 Feb 2025 11:15:11 +0100 Subject: [PATCH] Add Fortran reading files and method pages --- ...an_Calls_Methods_Functions_Subroutines.vue | 171 ++++++++++++++++++ src/components/Fortran/Fortran_Index.vue | 1 + .../Fortran/Fortran_Reading_Files.vue | 14 +- src/main.ts | 3 + tags/CodeTag.vue | 10 +- tags/PageStart.vue | 4 + tags/Paragraph.vue | 3 + 7 files changed, 192 insertions(+), 14 deletions(-) create mode 100644 src/components/Fortran/Fortran_Calls_Methods_Functions_Subroutines.vue create mode 100644 tags/PageStart.vue create mode 100644 tags/Paragraph.vue diff --git a/src/components/Fortran/Fortran_Calls_Methods_Functions_Subroutines.vue b/src/components/Fortran/Fortran_Calls_Methods_Functions_Subroutines.vue new file mode 100644 index 0000000..0a89535 --- /dev/null +++ b/src/components/Fortran/Fortran_Calls_Methods_Functions_Subroutines.vue @@ -0,0 +1,171 @@ + + + + + \ No newline at end of file diff --git a/src/components/Fortran/Fortran_Index.vue b/src/components/Fortran/Fortran_Index.vue index 9d49d44..180a98b 100644 --- a/src/components/Fortran/Fortran_Index.vue +++ b/src/components/Fortran/Fortran_Index.vue @@ -24,6 +24,7 @@
  • > Set Up
  • > Hello World
  • > Data Types
  • +
  • > Method, Functions, Sub Routines and Calls
  • > Reading A File
  • diff --git a/src/components/Fortran/Fortran_Reading_Files.vue b/src/components/Fortran/Fortran_Reading_Files.vue index 305082b..f137ed6 100644 --- a/src/components/Fortran/Fortran_Reading_Files.vue +++ b/src/components/Fortran/Fortran_Reading_Files.vue @@ -1,15 +1,19 @@ \ No newline at end of file diff --git a/src/main.ts b/src/main.ts index 078629a..f7f5e65 100644 --- a/src/main.ts +++ b/src/main.ts @@ -12,6 +12,8 @@ import FortranReadingFiles from "./components/Fortran/Fortran_Reading_Files.vue" import FortranHelloWorld from "./components/Fortran/Fortran_Hello_World.vue"; import FortranSetUp from "./components/Fortran/Fortran_Set_Up.vue"; import FortranDataTypes from "./components/Fortran/Fortran_Data_Types.vue"; +import FortranCallsMethodsFunctionsSubroutines + from "./components/Fortran/Fortran_Calls_Methods_Functions_Subroutines.vue"; const router = createRouter({ history: createWebHistory(), @@ -23,6 +25,7 @@ const router = createRouter({ {path: '/Fortran/SetUp', name: 'SetUp', component: FortranSetUp}, {path: '/Fortran/HelloWorld', name: 'HelloWorld', component: FortranHelloWorld}, {path: '/Fortran/DataTypes', name: 'DataTypes', component: FortranDataTypes}, + {path: '/Fortran/Methods', name: 'Methods', component: FortranCallsMethodsFunctionsSubroutines}, {path: '/Fortran/ReadingAFile', name: 'ReadingAFile', component: FortranReadingFiles}, {path: '/Pascal', name: 'Pascal', component: PascalIndex}, diff --git a/tags/CodeTag.vue b/tags/CodeTag.vue index 967efcf..4b1e524 100644 --- a/tags/CodeTag.vue +++ b/tags/CodeTag.vue @@ -1,11 +1,3 @@ - - - - \ No newline at end of file + \ No newline at end of file diff --git a/tags/PageStart.vue b/tags/PageStart.vue new file mode 100644 index 0000000..d49622b --- /dev/null +++ b/tags/PageStart.vue @@ -0,0 +1,4 @@ + \ No newline at end of file diff --git a/tags/Paragraph.vue b/tags/Paragraph.vue new file mode 100644 index 0000000..e1f07fe --- /dev/null +++ b/tags/Paragraph.vue @@ -0,0 +1,3 @@ + \ No newline at end of file