Skip to content

Instantly share code, notes, and snippets.

@benaryorg
Created November 19, 2016 17:42
Show Gist options
  • Save benaryorg/a9f5c9324cf1ce9515d20ad2552835c7 to your computer and use it in GitHub Desktop.
Save benaryorg/a9f5c9324cf1ce9515d20ad2552835c7 to your computer and use it in GitHub Desktop.
#[macro_use]
extern crate error_chain;
mod error
{
error_chain! {
}
}
error_chain! {
links {
error::Error, Lib;
}
}
fn main() {
println!("Hello, world!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment