12 lines
205 B
Rust
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");
|
|
}
|