literálokból
The Hungarian word "literálokból" translates to "from literals" or "out of literals." In a programming context, it refers to the direct, unadorned representation of data values within source code. These are the actual numbers, characters, or strings that you type directly into your program. For example, in the statement `x = 10;`, the value `10` is a numeric literal. Similarly, in `name = "Alice";`, `"Alice"` is a string literal, and `true` in `is_valid = true;` is a boolean literal.
These literals serve as the fundamental building blocks for assigning values to variables, constructing data structures,