mirror of
https://github.com/wez/wezterm.git
synced 2024-11-23 23:21:08 +03:00
10 lines
222 B
Rust
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()
|
|
}
|