mirror of
https://github.com/wez/wezterm.git
synced 2024-12-24 13:52:55 +03:00
10 lines
133 B
Rust
10 lines
133 B
Rust
extern crate termwiz;
|
|
#[macro_use]
|
|
extern crate failure;
|
|
|
|
use failure::Error;
|
|
|
|
fn main() -> Result<(), Error> {
|
|
bail!("woot");
|
|
}
|