Skip to content
/ plox Public

A Python implementation of the Lox language

License

Notifications You must be signed in to change notification settings

spthm/plox

Repository files navigation

plox

A Python implementation of the Lox language

Developer Quickstart

poetry>=1.2 is a dependency.

Install this package and its dependencies,

poetry install
poetry run pre-commit install

Run the plox CLI,

poetry run plox

Before pushing or opening a PR run the full set of linters and tests,

make lint
make test

To update dependencies,

make update