FreeCell

Description

Based on the old Squeak version

Details

Source
GitHub
Dialect
pharo (40% confidence)
License
MIT
Stars
2
Created
Dec. 31, 2017
Updated
April 16, 2020
Topics
pharo

README excerpt

# FreeCell
Based on the old Squeak version

### About

The objective of FreeCell is to move all of the cards to the four "home cells" in the upper right corner. Each home cell will hold one suit and must be filled sequentially starting with the Ace.

There are four "free cells" in the upper left corner that can each hold one card. Cards can be moved from the bottom of a stack to a free cell or to another stack.

When moving a card to another stack, it must have a value that is one less than the exposed card and of a different color.

### How to load

```
Metacello new
  baseline: 'FreeCell';
  repository: 'github://pavel-krivanek/FreeCell/src';
  load.
```

### How to run

```
FreeCell open.
```
← Back to results