Expressions and Statements
Term side of the Card
Topic: Basics
Unit title: Expressions and Statements
Categories: Concept
Explanation side of the Card
Explanation: The expressions generate values and can be used in computations or assigned to variables, including functions which are treated as values in this context. They represent parts of code that evaluate to something, like 5 + 3. The statements execute actions and control the flow of a program, such as with `if` conditions or `while` loops and don't return values.