Function execution
The function execution is a statement, that calls function with given parameters.
General semantic of the function execution can be written as
where
In fact,
Examples:
When, in function execution statement
Statement of the function execution is evaluated from right to left, that is:
Compiler requires that function execution statement must be written in one line.
This is because semicolons ending instructions are quite often forgotten.
And the forgotten semicolon could be understood as a statement of function execution of two instructions.