Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bergel/LesMiserables
Model of Les Miserables
https://github.com/bergel/LesMiserables
Last synced: 3 days ago
JSON representation
Model of Les Miserables
- Host: GitHub
- URL: https://github.com/bergel/LesMiserables
- Owner: bergel
- License: mit
- Created: 2019-08-25T12:32:12.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-09-14T20:13:14.000Z (about 3 years ago)
- Last Synced: 2024-11-13T02:23:40.180Z (7 days ago)
- Language: Smalltalk
- Size: 8.79 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-pharo - Les Miserables - Coappearance characters of Les Miserables. (Datasets)
README
# LesMiserables
This GitHub repository provides a small model describing from [Les Miserables](http://users.csc.calpoly.edu/~dekhtyar/466-Fall2010/labs/lab7/lesmisDir.csv).
This dataset is used as a showcase by [Roassal](https://github.com/ObjectProfile/Roassal3)
It can be loaded using:
```Smalltalk
Metacello new
baseline: 'LesMiserables';
repository: 'github://bergel/LesMiserables';
load.
```You can then access it:
```Smalltalk
m := LMModel new create.
m characters size. "=> 77"
(m characters detect: [ :c | c name = 'Cosette' ]) numberOfCoappearances. "=>22"
```