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

Assignment:

fn main() {
    let fruit1 = String::from("Apple");
    let fruit2 = fruit1;       
    println!("fruit1 = {}", fruit1);     
    println!("fruit2 = {}", fruit2);
}

Run the above code and fix the error

