SmallGameOfLife

Description

A simple game of life implementation in Pharo

Details

Source
GitHub
Dialect
pharo (65% confidence)
License
MIT
Stars
2
Forks
1
Created
Sept. 30, 2019
Updated
April 11, 2025
Topics
game life pharo pharo-smalltalk

Categories

Games

README excerpt

# 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 
```
← Back to results