Skip to content

Instantly share code, notes, and snippets.

@sajuthankappan
Created September 12, 2015 18:10
Show Gist options
  • Save sajuthankappan/98d2bd646f643042ff3b to your computer and use it in GitHub Desktop.
Save sajuthankappan/98d2bd646f643042ff3b to your computer and use it in GitHub Desktop.
#[macro_use]
extern crate log;
extern crate env_logger;
fn main() {
env_logger::init().unwrap();
info!("starting up");
error!("error");
println!("Hello, world!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment