Skip to content

Instantly share code, notes, and snippets.

@developerfred
Created November 11, 2019 01:15
Show Gist options
  • Save developerfred/6f407cf887a60257f5c755ad02834593 to your computer and use it in GitHub Desktop.
Save developerfred/6f407cf887a60257f5c755ad02834593 to your computer and use it in GitHub Desktop.
Learning Rust Codes
fn main() {
let x = 5;
let y = 10;
println!("x = {} and y = {}", x, y);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment