# `win64`
## A fun little signaling crate
```rust
fn main() {
let semaphore = bau::Semaphore::new(10);
let s = semaphore.clone();
.wait(|| {
println!("I'm not a chihuahua!"); // Critical section
})
.unwrap(); // Call to signal upon exit
});
let _guard = s.wait_guard(); // Entry
println!("I'm not fuwawa!"); // Critical section
} // Call to signal upon drop
});
println!("BAU BAU!");
}
```
> [!NOTE]
> No AI-generated code.