Values from a function are returned using return
If return statement is not used, value from the last expression in the function is returned. Semicolon is also not used after the expression
Multiple values can be returned from a function using tuple
All code in Rust is either a statement
or a expression
Statements do not return a value