Skip to content

Instantly share code, notes, and snippets.

@MatejLach
Created August 1, 2014 15:46
Show Gist options
  • Save MatejLach/06b5fae72938414ebee4 to your computer and use it in GitHub Desktop.
Save MatejLach/06b5fae72938414ebee4 to your computer and use it in GitHub Desktop.
Example of a global constant in Rust
static Pi: f64 = 3.14;
fn display_pi() {
println!("{}", Pi);
}
fn main() {
display_pi()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment