We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ec8538 commit a190770Copy full SHA for a190770
2 files changed
README.md
@@ -74,7 +74,8 @@ fn main() {
74
let output = formatter.finish();
75
println!("{}", output);
76
}
77
-```
+```
78
+
79
Gives the output:
80
81
```
@@ -150,6 +151,10 @@ cargo run --release --bin corpus_test -- /path/to/php/project
150
151
- **Parser**: A combination of Recursive Descent and Pratt parsing for expressions.
152
- **AST**: All nodes are allocated in a `Bump` arena. Strings are stored as references to the original source (`&'src [u8]`) or arena-allocated slices.
153
154
+## Use Cases
155
156
+- [php-rs](https://github.com/wudi/php-rs) A PHP interpreter written in Rust.
157
158
## License
159
160
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
TODO.md
0 commit comments