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:


-

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