Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

global variables in debug mode #208

Closed
PavelVozenilek opened this issue May 15, 2019 · 2 comments
Closed

global variables in debug mode #208

PavelVozenilek opened this issue May 15, 2019 · 2 comments
Labels
Feature/Enhancement Request This issue is made to request a feature or an enhancement to an existing one.

Comments

@PavelVozenilek
Copy link

PavelVozenilek commented May 15, 2019

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:

not-in-release { 
  my-debug-var := 1
}

fn foo()
{
   ...
   not-in-release {
       my-debug-var = my-debug-var + 1
   }
   ...
}

Simple statements could omit the not-in-release:

fn bar()
{
  my-debug-var = my-debug-var + 1 // no-op in release
}

These variables and code would exist in in debug mode(s) and when tests are compiled in.

@diamondburned
Copy link

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.

@Bowero
Copy link
Member

Bowero commented Jun 26, 2019

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.

https://vlang.io/docs#vars

@Bowero Bowero closed this as completed Jun 26, 2019
yuyi98 pushed a commit to yuyi98/v that referenced this issue Jun 21, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Feature/Enhancement Request This issue is made to request a feature or an enhancement to an existing one.
Projects
None yet
Development

No branches or pull requests

4 participants