2024-06-21

This commit is contained in:
2024-06-21 16:45:09 +09:00
parent 5960e7ca43
commit 7633aa300d
21 changed files with 260 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
# Fortran
## 설치
```bash
sudo apt install gfortran
```
## 버전 확인
```bash
gfortran --version
```
## 컴파일
```bash
gfortran hello.f90 -o hello
```