├── .gitignore ├── LICENSE ├── README.md ├── challenges.md ├── docs └── functions.md ├── logo.png ├── requirements.txt ├── ruff.toml └── src ├── algorithm.py ├── arity_notation.py ├── draw.py ├── grid.py ├── jello.py ├── test.py ├── tokens.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codereport/jello/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codereport/jello/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codereport/jello/HEAD/README.md -------------------------------------------------------------------------------- /challenges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codereport/jello/HEAD/challenges.md -------------------------------------------------------------------------------- /docs/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codereport/jello/HEAD/docs/functions.md -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codereport/jello/HEAD/logo.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | colorama 2 | prompt_toolkit 3 | -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codereport/jello/HEAD/ruff.toml -------------------------------------------------------------------------------- /src/algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codereport/jello/HEAD/src/algorithm.py -------------------------------------------------------------------------------- /src/arity_notation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codereport/jello/HEAD/src/arity_notation.py -------------------------------------------------------------------------------- /src/draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codereport/jello/HEAD/src/draw.py -------------------------------------------------------------------------------- /src/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codereport/jello/HEAD/src/grid.py -------------------------------------------------------------------------------- /src/jello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codereport/jello/HEAD/src/jello.py -------------------------------------------------------------------------------- /src/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codereport/jello/HEAD/src/test.py -------------------------------------------------------------------------------- /src/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codereport/jello/HEAD/src/tokens.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codereport/jello/HEAD/src/utils.py --------------------------------------------------------------------------------