📄 main.rs
/home/palash/git/misc/rust/nodetorust/ch4/src/main.rs
Language: rs • Lines: 7
fn main() {
    greet("World".to_string());
  }
  
  fn greet(target: String) {
    println!("Hello, {}", target);
  }