Skip to content

Instantly share code, notes, and snippets.

@rashaabdulrazzak
Created January 7, 2022 11:29
Show Gist options
  • Save rashaabdulrazzak/b39420d44876254aefea91279d02b1de to your computer and use it in GitHub Desktop.
Save rashaabdulrazzak/b39420d44876254aefea91279d02b1de to your computer and use it in GitHub Desktop.
print in rust
fn main (){
let x = 1
println!(" value of X{}", x);
println!("{}{}", 2, 2);
// single placeholder
println!("Number: {}", 1);
// multiple placeholders
println!("{} is a {} language", "Rust", "programing");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment