Proposal: Locally scoped variables
Open
- Dominant language
- No language data
- Stars
- 328
- Forks
- 71
- PR merge metrics
- No merged PRs in 30d
Description
Current scoping is misleading
```
If False Then
Dim x = 0 ' error
End If
Dim x = 0
```
New keyword `Let` can fix it
```
If False Then
Let x = 0 ' no error
End If
Dim x = 0
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.