1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-24 13:52:55 +03:00
wezterm/examples/hello.rs
2018-07-17 19:04:23 -07:00

10 lines
133 B
Rust

extern crate termwiz;
#[macro_use]
extern crate failure;
use failure::Error;
fn main() -> Result<(), Error> {
bail!("woot");
}