An open API service indexing awesome lists of open source software.

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

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`.