# Organization of SYSTEM repository ## Directories/Files and their purposes ### Documentation - `README.md`: Entrypoint for documentation. Should be the first thing everyone reads. - `CONTRIBUTING.md`: Guidelines for contributing to this project. - `LICENSE.txt`: Copy of license text. - `doc/`: Documentation. - `doc/ORGANIZATION.md`: This file. Outline of repository and the purpose of everything in it. ### Source Code - `Makefile`: Make script for compiling executable. - `SYSTEM.asd`: Lisp system definition. - `src/`: Source Code. - `src/SYSTEM.lisp`: Lisp package definition, entrypoint for application. - `test/`: Test Suite. - `test/SYSTEM-test.lisp`: Entrypoint for test suite.