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



Assignment:

fn main() {
    let x = 10; // Immutable variable
    println!("The value of x is: {}", x);

    x = 20; 
    println!("The new value of x is: {}", x);
}

    1. Run the above program
    2. Analyse the error and correct the program
