use comrade::defer; fn main() { println!("Hello World!"); defer!(|| { // this will run at the end of the scope println!("Bye World!"); }); println!("doing something"); }