| Crates.io | s1mple |
| lib.rs | s1mple |
| version | 0.0.1 |
| created_at | 2022-03-13 19:04:21.852734+00 |
| updated_at | 2022-03-13 19:04:21.852734+00 |
| description | A toy language/compiler for learning compiler design. |
| homepage | |
| repository | |
| max_upload_size | |
| id | 549341 |
| size | 23,270 |
A toy language/compiler for learning compiler design.

| Symbol | Symbol Defisnition |
|---|---|
| Function | fn <Ident>? <FunctionParams> <FunctionReturn>? <FunctionBody> |
| FunctionParams | ( ) |
| FunctionReturn | -> i64 |
| FunctionBody | { <Expression> } |
| Expression | <Value> <Operator>? <Expression>? |
| Value | <Ident> | <Literal> |
| Operator | + |
| Ident | [A-Za-z]* |
| Literal | [0-9]* |