Névkörnyezetben
Névkörnyezetben, which translates to "in a namespace" in English, refers to the context in which a name is defined and interpreted. In computer programming, namespaces are used to organize code and prevent naming conflicts. They act as containers for identifiers such as variables, functions, classes, and types. When you refer to a name within a specific namespace, you are indicating that you are using the version of that name defined within that particular scope.
This concept is crucial for modularity and reusability. Without namespaces, it would be difficult to use libraries
For example, if two different libraries both define a function called `print`, placing them in separate namespaces