# ASCII Art Generator
A simple Rust crate for generating ASCII art text patterns.
## Installation
Add this to your `Cargo.toml`:
```toml
[dependencies]
ascii_art_generator = "0.1.0"
```
## Usage
### As a library
```rust
use ascii_art_generator::generate_pattern;
fn main() {
let pattern = generate_pattern("HELLO - *");
println!("{}", pattern);
}
```
### As a binary
```bash
cargo install ascii_art_generator
ascii_art_generator
```
Then follow the prompts to enter your text and symbol.
## Examples
Input: `HELLO - *`
Output:
```
* * ***** * * *****
* * * * * * *
***** ***** * * * *
* * * * * * *
* * ***** ***** ***** *****
```
## License
This project is licensed under the MIT License - see the LICENSE file for details.