ziio 0.1.0

A simple library that exports a ziio variable
Documentation
# ziio

A simple Rust library that exports a constant variable named `ZIIO` with the value `"ziio"`.

## Usage

Add this to your `Cargo.toml`:

```toml
[dependencies]
ziio = "0.1.0"
```

Then use it in your code:

```rust
use ziio::ZIIO;

fn main() {
    println!("The value is: {}", ZIIO); // Prints: The value is: ziio
}
```

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.