Created
November 11, 2019 01:15
-
-
Save developerfred/6f407cf887a60257f5c755ad02834593 to your computer and use it in GitHub Desktop.
Learning Rust Codes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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