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
a114f34a2a3532de6149291e994a2d238a58e687
wren
/
test
/
language
/
variable
/
scope_reuse_in_different_blocks.wren
T
10 lines
109 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Start getting block scope working.
2013-11-18 09:19:03 -08:00
{
var a = "first"
Clean up text handling a bit:
2014-01-05 12:27:12 -08:00
IO.print(a) // expect: first
Start getting block scope working.
2013-11-18 09:19:03 -08:00
}
{
var a = "second"
Clean up text handling a bit:
2014-01-05 12:27:12 -08:00
IO.print(a) // expect: second
Start getting block scope working.
2013-11-18 09:19:03 -08:00
}
Reference in New Issue
Copy Permalink