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

Assignment:

    1. Define an enum Operation with variants: Add, Subtract, Multiply, and Divide.
    2. Write a function calculate with two f64 numbers and one Operation.
    3. Function returns the f64 result.
    4. In the main function, call calculate with different operations and print the results.
