A Value is the piece of information that a Command token acts upon. Whether you are printing data or storing it in memory, that data must exist in one of three forms:
Literal: A fixed, raw value written directly into the code (e.g., 123 or True).
Variable: A named container that stores a value to be used later (e.g., x).
Expression: A calculation or operation that results in a single value (e.g., 5 + 5).