** subfolder readmes

This commit is contained in:
ben 2016-03-20 11:53:09 -04:00
parent 34176f6dcf
commit cd4fb63945
2 changed files with 14 additions and 0 deletions

11
trivial/README.md Normal file
View File

@ -0,0 +1,11 @@
Project Structure
---
- `private/` Contains the implementation
- `scribblings/` Documentation sources
- `info.rkt` Racket package metadata
- `main.rkt` Package front-end, use with `(require trivial)`
- `no-colon.rkt` Alternate front-end, use with `(require trivial/no-colon)`
- `*.rkt` Front-ends for specific libraries
- `*/` Front-ends for the no-colon versions of specific libraries, like `(require format/no-colon)`

View File

@ -4,3 +4,6 @@ private
Files that no law-abiding library user should `require`.
- `common.rkt` Helper functions common to a few macros.
- `set-bang.rkt` Restrict `set!` to respect our syntax property metadata.
- `test-common.rkt` Helpers for unit testing
- `db/` Support for the `db.rkt` implementation