···13131414```bash
1515# With a file
1616-python3 scrapscript.py eval examples/0_home/triangle.ss
1616+python3 scrapscript.py eval examples/0_home/factorial.scrap
17171818# With a string literal
1919python3 scrapscript.py apply "1 + 2"
···26262727```bash
2828# With a file (mount your local directory)
2929-docker run --mount type=bind,source="$(pwd)",target=/mnt -i -t ghcr.io/tekknolagi/scrapscript:trunk eval /mnt/examples/0_home/triangle.ss
2929+docker run --mount type=bind,source="$(pwd)",target=/mnt -i -t ghcr.io/tekknolagi/scrapscript:trunk eval /mnt/examples/0_home/factorial.scrap
30303131# With a string literal
3232docker run -i -t ghcr.io/tekknolagi/scrapscript:trunk apply "1 + 2"