Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```