Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rvillemeur/smallgameoflife
A simple game of life implementation in Pharo
https://github.com/rvillemeur/smallgameoflife
game life pharo pharo-smalltalk
Last synced: 20 days ago
JSON representation
A simple game of life implementation in Pharo
- Host: GitHub
- URL: https://github.com/rvillemeur/smallgameoflife
- Owner: rvillemeur
- License: mit
- Created: 2019-09-30T14:53:40.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-02-14T02:53:24.000Z (9 months ago)
- Last Synced: 2024-10-09T13:22:21.413Z (about 1 month ago)
- Topics: game, life, pharo, pharo-smalltalk
- Language: Smalltalk
- Size: 37.1 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SmallGameOfLife
A simple game of life implementation in Pharo```smalltalk
Metacello new
baseline: 'SmallGameOfLife';
repository: 'github://rvillemeur/SmallGameOfLife/src';
load
```![](https://github.com/rvillemeur/SmallGameOfLife/blob/master/gol.PNG)
To start it:
```smalltalk
|game|game := GOLGame rows: 9 columns: 16.
game patternPentadecathlon .
game openInWindow
```