1
1
mirror of https://github.com/wez/wezterm.git synced 2025-01-05 04:05:42 +03:00

add failing example

This commit is contained in:
Wez Furlong 2018-07-17 19:04:23 -07:00
parent b69cc04266
commit 760be03f8e

9
examples/hello.rs Normal file
View File

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