Local setup
Install Inscript locally.
Inscript runs as a Python package. You install it from the public GitHub repo.
The current interpreter runs as a Python package from the public repository.
git clone https://github.com/rmichaelthomas/inscript.git
cd inscript
python -m venv venv
source venv/bin/activate
pip install -e ".[dev]"
Run the tests
pytest tests/
Run an example file
python -m inscript examples/program1_basics.insc
Quiet output
python -m inscript --quiet examples/dogfood_v2a_14_realistic.insc
Requires Python 3.10+.