# commonsense
[](https://crates.io/crates/commonsense)
[](https://docs.rs/commonsense)
[](#license)
**commonsense** is a collection of ergonomic rituals for Rust: macros and utilities that encode ownership and intent without hiding their cost.
---
## Features
- `svec!` — create a `Vec<String>` from string literals or expressions.
---
## Example
```rust
use commonsense as cs;
fn main() {
let words = cs::svec!["hello", "world"];
assert_eq!(words, vec!["hello".to_string(), "world".to_string()]);
}