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

Assignment:

1. Create a tuple named person with the following values:
       Name: "John Barber" (as a string slice &str)
       Age: 50 (as u8)
       Height in cm: 168.5 (as f32)
2. Print each value in the tuple using indexing 
3. Destructure the tuple into separate variables and print those variables

