Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/samwson/quote-of-the-day
A simple program that shows a random quote on demand.
https://github.com/samwson/quote-of-the-day
pharo pharo-smalltalk quotes smalltalk
Last synced: about 1 month ago
JSON representation
A simple program that shows a random quote on demand.
- Host: GitHub
- URL: https://github.com/samwson/quote-of-the-day
- Owner: samWson
- License: mit
- Created: 2020-04-25T09:03:02.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-04T07:14:56.000Z (over 4 years ago)
- Last Synced: 2024-12-18T21:17:35.680Z (about 1 month ago)
- Topics: pharo, pharo-smalltalk, quotes, smalltalk
- Language: Smalltalk
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Quotes
A program to show a randomly selected quote on demand.
## Loading Via Baseline
To load the project into a Smalltalk image run the following code:
```smalltalk
Metacello new
githubUser: 'samwson'
project: 'quote-of-the-day'
commitish: ''
path: '';
baseline: 'SWQuoteOfTheDay';
load
```## Usage
To run the program use `SWQuoteOfTheDay class>>#main`:
```smalltalk
SWQuoteOfTheDay main
```## License
This is repository is open source software under the MIT license.