From 3f01998e3b44aac3632e305a8092615c43eba713 Mon Sep 17 00:00:00 2001 From: rasmus Date: Thu, 6 Feb 2025 11:40:09 +0100 Subject: [PATCH] Change some thigns --- src/App.vue | 10 +++++----- src/components/Fortran/Fortran_Set_Up.vue | 14 ++++++-------- 2 files changed, 11 insertions(+), 13 deletions(-) diff --git a/src/App.vue b/src/App.vue index c4a6266..f1958f5 100644 --- a/src/App.vue +++ b/src/App.vue @@ -5,11 +5,11 @@
diff --git a/src/components/Fortran/Fortran_Set_Up.vue b/src/components/Fortran/Fortran_Set_Up.vue index 850f5d2..87eb979 100644 --- a/src/components/Fortran/Fortran_Set_Up.vue +++ b/src/components/Fortran/Fortran_Set_Up.vue @@ -6,7 +6,6 @@

Setting Up The Environment


-

If you're familiar with C, then you would feel right at home with Fortran's build environment. There isn't really an "official" compiler for the language, only a standard, that has to be implemented by the compilers. But there @@ -20,14 +19,14 @@

Compilers:

    -
  • lfortran (This one can be used as an interactive - compiler, and also supports parsing all of the 2018 standard syntax. It can also compile Fortran to WebAssemply).
  • -
  • NVIDIA HPC SDK (This one comes with a whole lot of GPU +
  • > lfortran (This one can be used as an interactive + compiler, supports parsing all of the 2018 standard syntax and also compile Fortran to WebAssemply).
  • +
  • > NVIDIA HPC SDK (This one comes with a whole lot of GPU accelerated libraries).

-

But , we will use gfortran. I will mainly be focusing on installing and developing on Linux.

+

But we will be using gfortran. Through the examples on this site, I will mainly be focusing on developing on Linux.


First, we install the compiler.

@@ -48,7 +47,6 @@

Project Structure


-

When creating a Fortran project, or any project in general, you want a structure. There is a lot of different layouts for the structure, but equal amongst them, is the src folder. That's where we keep all of out @@ -62,7 +60,7 @@

But if we're doing micro-projects, as in like, a hello world application, a test application, or a small tool, - this layout is rather redundant, and on the examples on the website here, we will only use it on bigger projects, + this layout is rather redundant, and in the examples on this site, we will only use it on bigger projects, and we will let you know, when or how we set up the project.


@@ -90,6 +88,6 @@ project/
-

Makefiles are very useful, and becomes increasingly useful, the bigger the project is.

+

Makefiles are very useful, and becomes increasingly useful, the bigger the project gets.

\ No newline at end of file