Common terms in Rust
Printing Hello Rahul
Simply write the code mentioned below
fn main() { // from here the program starts and between two curly brackets whatever is written it contains execution part
println!("Hello Rahul"); // printing Hello Rahul
}
//if used ...
rahulcodesrust.hashnode.dev1 min read