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 @@
# Ergリポジトリのディレクトリ構造
```console
└─┬ assets: 画像など
├─ CODE_OF_CONDUCT: 行動規範
├─┬ compiler
│ ├─ erg_common: 共通のユーティリティ
│ ├─ erg_compiler
│ └─ erg_parser: パーサー
├─┬ doc
│ ├─┬ EN
│ │ ├─ API: Erg標準API
│ │ ├─ compiler: コンパイラの実装に関して
│ │ ├─ dev_guide: 開発・貢献者向けガイド
│ │ ├─ python: Ergの開発に必要なPythonの知識
│ │ ├─ syntax: Ergの文法
│ │ └─ tools: Ergのコマンドラインツールに関して
│ └─ JA
├─ examples: サンプルコード
├─ library: Ergスクリプトによるライブラリ
├─ src: main.rsとドライバの置かれたディレクトリ
└─ tests: テストコード
```