The Fortran Programming Language — Fortran Programming Language Fortran is a natively parallel programming language with intuitive array-like syntax to communicate data between CPUs You can run almost the same code on a single CPU, on a shared-memory multicore system, or on a distributed-memory HPC or cloud-based system
Hello World — Fortran Programming Language 在本教程中,我们将使用免费和开源的 GNU Fortran 编译器 (gfortran),它是 GNU 编译器集合 (GCC) 的一部分。 要在 Linux 上安装 gfortran,请使用系统包管理器。 在 macOS 上,你可以使用 Homebrew 或 MacPorts 安装 gfortran。 在 Windows 上,你可以在 此处 获取本机二进制文件。
Community — Fortran Programming Language A community-driven project for a de facto ‘standard’ library for Fortran The stdlib project is both a specification and a reference implementation, developed in cooperation with the Fortran Standards Committee
操作符和流程控制 — Fortran Programming Language Fortran 允许程序员对每个循环进行 tag 或 name 。 如果循环被标记,有两个潜在的好处: 代码的可读性可能会提高(当命名有意义时)。 exit 和 cycle 可以与标签一起使用,这允许对循环进行非常细粒度的控制。 示例: 标记的嵌套循环