What is RUNTIME in programming – Example in Unity
In this article we see the concept of RUNTIME in programming and in particular the what is runtime in a Unity application.
In this article we see the concept of RUNTIME in programming and in particular the what is runtime in a Unity application.
Introduction A Script is a document that contains programming instructions in a certain language, which is the one understood by the tool we are using to develop any application that requires programming. Some examples of the use of Scripts For example, a Script may contain a list of instructions for an Arduino to perform a …
What are Scripts and what are they for? – Example of use in Unity Read More »
The loop is a repetitive control structure that allows us to repeat a sequence of instructions until a condition is no longer true. In a computer program, instructions are executed instruction by instruction in a sequential manner, this is known as the program flow. The control structures allow us to alter this execution flow, enabling …
{ What is a LOOP in programming } – Programming theory Read More »
Definition of BOOLEAN A BOOLEAN is a type of primitive variable that is characterized by being able to be in only two states, “true” or “false”. The name of this variable is due to the mathematician George Boole who created Boolean algebra, which is the basis of all digital operations. Here is a more detailed …
Definition of STRING A STRING is a data type used to store text, it is not a primitive variable such as int, bool or float, but a set of primitive variables of the character type. Syntax of STRING data in Unity Unity simplifies the syntax of string data and makes it possible to treat it …
Definition SYNTAXIS in programming is the set of rules that define the way to write code instructions. Each programming language has its own syntax, that is why it is not convenient to study programming based purely on writing code, but understanding the way of thinking, the basic concepts, knowing the control structures and how to …
What is the SYNTAXIS in programming? – Programming theory Read More »
Definition of FLOAT The name FLOAT comes from the “floating point” numerical representation system and refers to a type of primitive variable that is characterized by being a numerical variable that admits a decimal part, it can be used to represent positive and negative real numbers within a certain range and with a certain precision …