Skip to content

Instantly share code, notes, and snippets.

@piotrrojek
Created August 10, 2017 12:26
Show Gist options
  • Save piotrrojek/a596544881008defe4205429ebf806e0 to your computer and use it in GitHub Desktop.
Save piotrrojek/a596544881008defe4205429ebf806e0 to your computer and use it in GitHub Desktop.
const VERSION: Option<&'static str> = option_env!("CARGO_PKG_VERSION");
fn main() {
println!("Hello, world!");
println!("version: {}", VERSION.unwrap_or("dev"));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment