31 lines
1.4 KiB
Vue
31 lines
1.4 KiB
Vue
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<h1 class="text-3xl">Fortran</h1>
|
|
<hr>
|
|
<p>Fortran (Formula Translation), is one of the ancient languages somehow still in use as of today. First introduced
|
|
in the 1950s by a team at IBM, Fortran was designed specifically for scientific and engineering applications,
|
|
where its ability to efficiently handle complex mathematical operations far outperformed rivaling languages at the
|
|
time.</p>
|
|
<br>
|
|
|
|
<p>
|
|
Over the years, Fortran has undergone numerous updates and revisions, with the most recent standard being Fortran
|
|
2023. Even with the popularity of newer languages, such as 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.</p>
|
|
<br>
|
|
|
|
<p>Table of contents:</p>
|
|
<ul>
|
|
<li><RouterLink to="/Fortran/SetUp">> Set Up</RouterLink></li>
|
|
<li><RouterLink to="/Fortran/HelloWorld">> Hello World</RouterLink></li>
|
|
<li><RouterLink to="/Fortran/DataTypes">> Data Types</RouterLink></li>
|
|
<li><RouterLink to="/Fortran/Methods">> Method, Functions, Sub Routines and Calls</RouterLink></li>
|
|
<li><RouterLink to="/Fortran/ReadingAFile">> Reading A File</RouterLink></li>
|
|
</ul>
|
|
</div>
|
|
</template> |