mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-29 04:24:43 +00:00
Add directories.md
This commit is contained in:
parent
4f46ee46b6
commit
0b54ef3b40
3 changed files with 88 additions and 0 deletions
23
doc/EN/dev_guide/directories.md
Normal file
23
doc/EN/dev_guide/directories.md
Normal 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
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue