Add directories.md

This commit is contained in:
Shunsuke Shibayama 2022-08-21 10:53:50 +09:00
parent 4f46ee46b6
commit 0b54ef3b40
3 changed files with 88 additions and 0 deletions

View file

@ -0,0 +1,23 @@
# Directory Structure of Erg
```console
└─┬ assets: images
├─ CODE_OF_CONDUCT: Code of Conduct
├─┬ compiler
│ ├─ erg_common: common utilities
│ ├─ erg_compiler: Compiler
│ └─ erg_parser: Parser
├─┬ doc
│ ├─┬ EN
│ │ ├─ API: Erg standard API
│ │ ├─ compiler: about implementation of the compiler
│ │ ├─ dev_guide: guide for developers & contributors
│ │ ├─ python: Knowledge of Python required for Erg development
│ │ ├─ syntax: syntax of Erg
│ │ └─ tools: about Erg's CLI tools
│ └─ JA
├─ examples: sample code
├─ library: Erg libraries
├─ src: main.rs & driver
└─ tests: test code
```