lazing 0.1.1

A macro like lazy_static can initialize static variables.
Documentation

Lazing

A macro like lazy_static can initialize static variables.

Usage

use std::ops::Deref;
#[lazy]
static NAME: String = "Hello".to_owned();

fn main() {
    println!("{}",NAME.deref());
}