Usage

I made this crate for my project, if you need larger text in terminal, you need to use ascii art characters. This simple crate provides one function to make a ascii art string.

fn convert (input: String) -> Result

Usage in Rust

```rust use texttoascii_art::convert;

fn main () { match convert("Hello in ascii".to_string()) { Ok(string) => println!("{}", string), Err(err) => println!("Error: {}", err), } } ```

toml [dependencies] text-to-ascii-art="0.1"

Examples: gymnasium/examples/