A very small library for reading the mouse location on macOS.
Continuously print the mouse location:
```rust use readmouse::Mouse;
fn main() { loop { println!("Mouse (x, y) location: {:?}", Mouse::location()); } } ```
readkey - Find out if a key is currently pressed on macOS.