```rust use winey::window::Window; use winey::{KeyCode, WindowEvent, WineyWindowImplementation};
fn main() { let window = Window::new("Hello World", 500, 500);
window.show();
window.run(|event,control_flow| {
match event {
WindowEvent::CloseRequested => {
control_flow.exit(0);
}
_ => {
}
}
})
} ```
Winey is under MIT LICENSE