This website requires JavaScript.
Explore
Help
Register
Sign In
retoor
/
wren
Watch
1
Star
0
Fork
0
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
Files
6947143007ecc0f5163df05f385f0b78448bf7ff
wren
/
test
/
variable
/
shadow_global.wren
T
6 lines
101 B
Plaintext
Raw
Normal View
History
Unescape
Escape
feat: replace Scope stack with Local array to fix variable shadowing in nested blocks
2013-12-01 02:28:01 +00:00
var a = "global"
{
var a = "shadow"
feat: rename IO.write to IO.print and add Unicode escape support in strings
2014-01-05 20:27:12 +00:00
IO.print(a) // expect: shadow
feat: replace Scope stack with Local array to fix variable shadowing in nested blocks
2013-12-01 02:28:01 +00:00
}
feat: rename IO.write to IO.print and add Unicode escape support in strings
2014-01-05 20:27:12 +00:00
IO.print(a) // expect: global
Reference in New Issue
Copy Permalink