# singularize-macro
Adds a simple `singularize!` macro that runs at compiletime
## Usage
```rust
singularize!(items); // item
singularize_paste! {
fn [messages]() -> &'static str { // fn message() -> ...
"hello"
}
}
```
It can also be used within declarative macros.