https://github.com/interkosmos/golf
Conway’s Game of Life in Fortran 2003
https://github.com/interkosmos/golf
cellular-automaton fortran game-of-life
Last synced: 6 days ago
JSON representation
Conway’s Game of Life in Fortran 2003
- Host: GitHub
- URL: https://github.com/interkosmos/golf
- Owner: interkosmos
- License: isc
- Created: 2018-01-30T14:23:20.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-05-20T13:01:51.000Z (about 5 years ago)
- Last Synced: 2024-12-30T13:57:30.498Z (6 months ago)
- Topics: cellular-automaton, fortran, game-of-life
- Language: Fortran
- Homepage:
- Size: 31.3 KB
- Stars: 4
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Game of Life (Fortran)
Simple text-based clone of the popular cellular automaton written in Fortran
2003. Should run on most Unix-like operating systems.
## Build
You can use CMake and GNU Fortran to build the game:```
$ mkdir build && cd build/
$ cmake ..
$ make
```If you do not want to use CMake, run:
```
$ gfortran9 -c src/getopt.f90
$ gfortran9 -o golf src/golf.f90 getopt.o
```## Run
```
$ ./golf --file world.txt --columns 30 --rows 10 --generations 100
```## Licence
ISC