webpage
webpage copied to clipboard
New Fortran webpage
Looking at qContainers | | | | | | -- | -- | -- | -- | -- | -- | -- Store any...
The Operators and Control Flow [section](https://fortran-lang.org/learn/quickstart/operators_control_flow) presents the do while loop with the example ``` integer :: i i = 1 do while (i < 11) print *, i i...
I understand that the Fortran-lang tutorial is short and selective in what it covers. However, reading the [Derived types](https://fortran-lang.org/learn/quickstart/derived_types) section, I think there is a jump in level starting with...
Fortran's one-line-if is convenient and concise, and I think it should be used when possible in the tutorial. At https://fortran-lang.org/learn/quickstart/operators_control_flow , after showing ``` if (angle < 90.0) then print...
Let's discuss what should the fortran-lang newsletters be and how we should work on them. I posted an example newsletter in fortran-lang/fortran-lang.org#2 yesterday. You can see the post [here](https://fortran-lang.org/newsletter/2020/04/06/Announcing-FortranCon-2020/) and...
Currently all the packages in https://fortran-lang.org/packages/ have [OSI](https://opensource.org/licenses/alphabetical) approved open source licenses. See also https://github.com/fortran-lang/fortran-lang.org/blob/master/PACKAGES.md#package-criteria which has the same criterion (OSI approved license). We should add a new section "other",...
@vmagnin brought my attention to the fact there are numerous Fortran projects still hosted on SourceForge: https://sourceforge.net/directory/language:fortran/?q=fortran Some might still be useful and could be added to the package index,...
SIAM (Society for Industrial and Applied Mathematics) has a 1.5-minute video [Math in Our Lives](https://www.youtube.com/watch?v=QTerl9S99bc) mentioning mathematical models of climate change, motors (automotives and aeronautics), and cancer treatment. The code...
So far we've only posted newsletters. However, it'd be of great value to establish a process for members of the community to publish Fortran-related blog posts. This would be good...
In the [tutorial](https://fortran-lang.org/learn/quickstart/organising_code) there are lines of code such as ``` print *,A(i,1:m) mat(:,:) = 0.0 ``` that could be written ``` print *,A(i,:) mat = 0.0 ``` I would...