https://github.com/fpclass/scratch-clone
Skeleton code for the Scratch Clone project
https://github.com/fpclass/scratch-clone
haskell haskell-exercises haskell-learning teaching-materials
Last synced: 9 days ago
JSON representation
Skeleton code for the Scratch Clone project
- Host: GitHub
- URL: https://github.com/fpclass/scratch-clone
- Owner: fpclass
- License: other
- Created: 2018-12-10T12:45:41.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2024-12-19T11:56:11.000Z (about 1 year ago)
- Last Synced: 2024-12-19T12:40:27.590Z (about 1 year ago)
- Topics: haskell, haskell-exercises, haskell-learning, teaching-materials
- Language: Haskell
- Homepage: https://fpclass.github.io/scratch-clone/
- Size: 1.31 MB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Scratch clone
This repository contains the skeleton code for the "Scratch Clone" project, which comprises:
- Function stubs for all of the functions that need to be implemented as part of the project. The Scratch Clone server can be run with `stack run`. In order to complete the project, only `src/Interpreter.hs` needs to be modified.
- A test suite for the project, which can be run with `stack test`. The source code for the test suite can be found in `test/Tests.hs`.
- A benchmark which can be run with `stack bench`. The source for the benchmarks can be found in `bench/Main.hs`.