Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danprager/racket-2048
The 2048 game implemented in Racket language
https://github.com/danprager/racket-2048
racket
Last synced: 1 day ago
JSON representation
The 2048 game implemented in Racket language
- Host: GitHub
- URL: https://github.com/danprager/racket-2048
- Owner: danprager
- License: mit
- Created: 2014-04-20T23:06:40.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-05-01T21:16:16.000Z (over 10 years ago)
- Last Synced: 2024-08-03T15:10:48.043Z (3 months ago)
- Topics: racket
- Language: Racket
- Size: 285 KB
- Stars: 79
- Watchers: 3
- Forks: 22
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-racket-and-scheme - 2048
README
2048 - Racket Edition
=====================This is a largely clean-room, functional implementation in Racket of the game [2048](http://gabrielecirulli.github.io/2048/), based on 1024,
cloned from the original iOS game [Threes](https://itunes.apple.com/us/app/threes!/id779157948?mt=8)
([development blog](http://asherv.com/threes/threemails/)).HOW TO PLAY:
* Use the arrow keys to slide the tiles.
* When two tiles with the same number touch, they merge into one!One of the nice things about 2048 is how many creative variations have been devised.
What can the Racket community do with it?
Dan
Enhancements
============
* Use the SPACE key to rotate the board.
* Choose a different grid-size (*side* in the code)
* Time elapsed or Time remaining (*time-limit* in the code)