Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 24 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 (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-05-20T13:01:51.000Z (over 4 years ago)
- Last Synced: 2024-11-08T03:09:41.762Z (3 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.![Screen Shot](screenshot.png)
## 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