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

Assignment:
As an assignment, execute the below program.

    fn main() {
      let Some(x) = Some(10); 
      println!(":x = {}", x);
}

    1. Analyze the compilation error.
    2. Use If let and correct the code.
    3. Run the program.
