You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Example 1: all allocations/deallocations are recorded and at the end of app run leaks are detected.
Example 2: deadlock detection.
Example 3: application specific checks where it is not desirable to clutter the code with additional function parameter(s).
I am very much against this, as it may seem really hard to convert the code from debugging to release. If no global state is something of a language feature, it shouldn't be allowed in any cases.
Global variables are not a part of V. This is completely intentional.
Unlike most other languages, V only allows defining variables in functions. Global (module level) variables are not allowed. There's no global state in V.
Global variables may help with defensive coding.
Example 1: all allocations/deallocations are recorded and at the end of app run leaks are detected.
Example 2: deadlock detection.
Example 3: application specific checks where it is not desirable to clutter the code with additional function parameter(s).
Possible syntax:
Simple statements could omit the
not-in-release
:These variables and code would exist in in debug mode(s) and when tests are compiled in.
The text was updated successfully, but these errors were encountered: