1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-09 16:26:53 +02:00

Bug fixes and words retouching

This commit is contained in:
Corvus
2018-07-25 12:21:56 +08:00
parent 1b630b37cb
commit 42a4ed848a

View File

@@ -9,12 +9,12 @@ lang: zh-cn
---
Fortran IBM开发于1950年用于数值运算Fortran "Formula
Translation"
FORTRAN 77, Fortran 90,
Translation"
Fortran 77, Fortran 90,
Fortran 95, Fortran 2003, Fortran 2008 Fortran 2015
Fortran 95 广
FORTRAN 77
Fortran 77
```fortran
@@ -34,7 +34,7 @@ program example !声明一个叫做 example 的程序
implicit none !阻止变量的隐式声明 (推荐!)
! Implicit none 必须在每一个 函数/程序/模块 中进行声明
! 重要 - Fortran 对大小写敏感
! 重要 - Fortran 对大小写敏感
real z
REAL Z2