hanger 0.1.0

Attribute macro to put hooks around a function.
Documentation
fn main() {
    entry();
}

fn hello() {
    print!("hello")
}

#[hanger::hook(before = hello, after = bye)]
fn world() {
    print!("world")
}

fn bye() {
    print!("\nbye\n")
}

#[hanger::hook(world)]
fn entry() {}