Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 843 Bytes

README.md

File metadata and controls

36 lines (23 loc) · 843 Bytes

Cairo0 Starter

A set of exercises forked from Starklings to get you started with Cairo0.

Installation

The project uses python 3.10. The recommended way to install it if you don't have it yet is to use pyenv.

pyenv install 3.10

Install the required dependencies by running the following command:

poetry install

Exercises

Exercises are located in the exercises directory. Each exercise has a corresponding test file with the same name in python, that verifies the correctness of the implementation.

Tests

To test your implementation of an exercise, run the following command:

poetry run pytest path/to/exercise.py

To test all exercises, run the following command:

poetry run pytest exercises