This commit is contained in:
Hassan Abedi 2026-03-09 11:09:12 +01:00
parent 06b6f09fc3
commit 8f9806c515

View File

@ -29,7 +29,7 @@ See [ROADMAP.md](ROADMAP.md) for the list of implemented and planned features.
---
### Quick Start
### Quickstart
```rust
use chase_rs::{chase, Atom, Instance, Term};
@ -74,17 +74,20 @@ let rule = RuleBuilder::new()
.build();
```
### Building and Testing
### Usful Commands
```bash
## Run all tests
cargo test
# Run all tests
make test
## Run with optimizations
cargo build --release
# Run linter checks
make lint
## Check for lint warnings
cargo clippy
# Run with optimizations
make build
# Run CLI
make run
```
### License