A Greeting Program
Build a small Rust program that takes user input from the terminal and constructs a greeting, using functions for separation of concerns.
Hello! My name is Jeff. I'm a self-taught, hobbyist programmer. Welcome to my space!
Build a small Rust program that takes user input from the terminal and constructs a greeting, using functions for separation of concerns.
Rust's three loop types: loop, while, and for, including returning values from loops and using ranges.
Using if, else, and else if expressions in Rust to control program flow, including conditional variable assignment.
Declaring functions in Rust, with parameters, return values, and the difference between statements and expressions.