Different ways to use println! macro in Rust
Print line which will just print something , but it is not as simple as we see it . It has various types within itself.
Printing a variable
fn main() {
let a = 10 ;
println!("The value of the variable a is: {} " , a );
//The fn main() in...
dishaan195.hashnode.dev3 min read
Dishaan
student learning software programming
hello