diff --git a/examples/hello.rs b/examples/hello.rs new file mode 100644 index 000000000..9167dfa69 --- /dev/null +++ b/examples/hello.rs @@ -0,0 +1,9 @@ +extern crate termwiz; +#[macro_use] +extern crate failure; + +use failure::Error; + +fn main() -> Result<(), Error> { + bail!("woot"); +}