mirror of
https://github.com/erg-lang/erg.git
synced 2025-08-07 12:18:22 +00:00
25 lines
883 B
Markdown
25 lines
883 B
Markdown
# Erg repository directory structure
|
|
|
|
```console
|
|
└─┬ assets: images, etc.
|
|
├─ CODE_OF_CONDUCT: Code of Conduct
|
|
├─┬ crates
|
|
│ ├─ els: Erg Language Server
|
|
│ ├─ erg_common: common utility
|
|
│ ├─ erg_compiler: Compiler, **core of Erg**
|
|
│ └─ erg_parser: Parser
|
|
├─┬doc
|
|
│ ├─┬ EN
|
|
│ │ ├─ API: Erg standard API
|
|
│ │ ├─ compiler: About compiler implementation
|
|
│ │ ├─ dev_guide: Guide for developers and contributors
|
|
│ │ ├─ python: Python knowledge required for Erg development
|
|
│ │ ├─ syntax: Erg syntax
|
|
│ │ └─ tools: Erg command line tools
|
|
│ └─┬ JA
|
|
│ ...
|
|
├─ examples: sample code
|
|
├─ library: Erg script library
|
|
├─ src: directory where main.rs and driver are placed
|
|
└─ tests: test code
|
|
```
|