comrade/examples/defer.rs
2025-03-10 11:27:20 +01:00

12 lines
205 B
Rust

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