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
1175d93efac56dc822d3e0156ba1819f2f0f8751
wren
/
test
/
variable
/
scope_reuse_in_different_blocks.wren
T
10 lines
109 B
Plaintext
Raw
Normal View
History
Unescape
Escape
feat: add block scope support with push/pop macros and scope tracking in compiler
2013-11-18 17:19:03 +00:00
{
var a = "first"
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: first
feat: add block scope support with push/pop macros and scope tracking in compiler
2013-11-18 17:19:03 +00:00
}
{
var a = "second"
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: second
feat: add block scope support with push/pop macros and scope tracking in compiler
2013-11-18 17:19:03 +00:00
}
Reference in New Issue
Copy Permalink