1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-23 23:21:08 +03:00
wezterm/window/examples/basic.rs
2019-09-15 19:09:08 -07:00

10 lines
222 B
Rust

use failure::Fallible;
fn main() -> Fallible<()> {
let win = window::os::windows::window::Window::new_window("myclass", "the title", 800, 600)?;
win.show();
window::os::windows::window::run_message_loop()
}