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

Rework with Static Scoping #15

Open
montymxb opened this issue Feb 25, 2021 · 0 comments
Open

Rework with Static Scoping #15

montymxb opened this issue Feb 25, 2021 · 0 comments
Labels

Comments

@montymxb
Copy link
Owner

The language is currently dynamically scoped, ex.

x = 11

@a() {
    print(x)
}

@b() {
    x = 22
    a()
}

b()

This should be changed to static scoping, i.e scopes are determined statically at the function definition, and not at the call site location.

@montymxb montymxb added the bug label Feb 25, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant