A macro like lazy_static can initialize static variables.
```rust use std::ops::Deref;
static NAME: String = "Hello".to_owned();
fn main() { println!("{}",NAME.deref()); }
```