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
99f0bf09c33c116b879d547d61098a0a53c59450
wren
/
test
/
variable
/
shadow_local.wren
T
8 lines
115 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Handle local variable shadowing.
2013-11-30 18:28:01 -08:00
{
var a = "local"
{
var a = "shadow"
Clean up text handling a bit:
2014-01-05 12:27:12 -08:00
IO.print(a) // expect: shadow
Handle local variable shadowing.
2013-11-30 18:28:01 -08:00
}
Clean up text handling a bit:
2014-01-05 12:27:12 -08:00
IO.print(a) // expect: local
Handle local variable shadowing.
2013-11-30 18:28:01 -08:00
}
Reference in New Issue
Copy Permalink