Skip to content

Commit e083c05

Browse files
Docs: Implement to docs the PATH tutorial.
1 parent 70f1413 commit e083c05

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

compiler/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,25 @@ Single-pass SSA compiler for Python 3.13: logos lexer, token-to-bytecode parser,
1313

1414
### Quick Start
1515

16+
Build and Install:
17+
1618
```bash
1719
cd compiler/
1820

1921
cargo build --release
2022
./target/release/edge -c 'print("Hello, world!")'
2123
```
2224

25+
Add to `$PATH`:
26+
27+
```bash
28+
realpath target/release/edge
29+
30+
echo 'export PATH="/path/to/compiler:$PATH"' >> ~/.bashrc
31+
source ~/.bashrc
32+
```
33+
34+
2335
### Usage
2436

2537
| Command | Description |

0 commit comments

Comments
 (0)