	  		Spoken Tutorial
	  Spoken Tutorial is brought to you by EduPyramids
	        https://spoken-tutorial.org 
	  	
           Rust Programming Language- Strings

Assignment:

fn main(){
   let mut title = " Spoken Tutorial".to_string();
   title.push_str(" Project");
   println!("{}",title);
}

1.Run the above code
2.Understand the difference between push and push_str function

