Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mitchellwrosen/hs2048-free
2048 clone in Haskell with a free monad transformer
https://github.com/mitchellwrosen/hs2048-free
Last synced: about 1 month ago
JSON representation
2048 clone in Haskell with a free monad transformer
- Host: GitHub
- URL: https://github.com/mitchellwrosen/hs2048-free
- Owner: mitchellwrosen
- License: bsd-3-clause
- Created: 2014-03-30T21:52:25.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-03-31T00:12:11.000Z (almost 11 years ago)
- Last Synced: 2024-10-22T06:55:32.184Z (3 months ago)
- Language: Haskell
- Size: 129 KB
- Stars: 4
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Yet Another 2048 clone, this time using a free monad to wrap a simple DSL for playing 2048. This decouples
the 2048 language from the interpretation, and it also makes it easy to write AIs to play the game. See
Main.hs for some examples.Code snippets stolen (with permission! :)) from https://github.com/badamson/2048.hs