Files
fortran-examples/Writerside/topics/starter-topic.md
2024-06-21 16:45:09 +09:00

19 lines
164 B
Markdown

# Fortran
## 설치
```bash
sudo apt install gfortran
```
## 버전 확인
```bash
gfortran --version
```
## 컴파일
```bash
gfortran hello.f90 -o hello
```