pureknow 0.1.0

A simple library that exports a pureknow variable
Documentation
# pureknow

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

## Usage

Add this to your `Cargo.toml`:

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

Then use it in your code:

```rust
use pureknow::PKG_NAME;

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

## License

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