Spoken Tutorials - RUST Assignment Funded by the Ministry of Education (MoE), GOI Indian Institute of Technology Bombay, https://spoken-tutorial.org ------------------------------------------------------------- Variables and Mutability In Rust 1. Go to the project folder "rust-assignment" 2. In the "main.rs" file a) Create a variable named "s" and make it mutable b) Assign "13" as a value to "s" c) Print the value of "s" d) Reassign the value of "s" as "19" e) Print the value of "s" 3. Compile and execute the project 4. Observe the output in the Terminal