mirror of
https://github.com/tauri-apps/winit.git
synced 2026-02-13 23:00:58 +01:00
* Format everything and add rustfmt to travis * Remove extern crate winit from examples and add force_multiline_blocks * Format the code properly * Fix inconsistent period in PULL_REQUEST_TEMPLATE.md * Only run rustfmt on nightly * Travis fixings
10 lines
256 B
Rust
10 lines
256 B
Rust
use winit::{event_loop::EventLoop, window::WindowBuilder};
|
|
|
|
fn main() {
|
|
let event_loop = EventLoop::new();
|
|
let window = WindowBuilder::new().build(&event_loop).unwrap();
|
|
|
|
dbg!(window.available_monitors());
|
|
dbg!(window.primary_monitor());
|
|
}
|