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
970093299a2f5814598db53ac76537a27af350fe
wren
/
test
/
variable
/
shadow_and_local.wren
T
8 lines
115 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Write some more scope edge case tests.
2013-12-14 16:36:19 -08:00
{
var a = "outer"
{
Clean up text handling a bit:
2014-01-05 12:27:12 -08:00
IO.print(a) // expect: outer
Write some more scope edge case tests.
2013-12-14 16:36:19 -08:00
var a = "inner"
Clean up text handling a bit:
2014-01-05 12:27:12 -08:00
IO.print(a) // expect: inner
Write some more scope edge case tests.
2013-12-14 16:36:19 -08:00
}
}
Reference in New Issue
Copy Permalink