mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-13 07:08:43 +01:00
7 lines
188 B
Plaintext
7 lines
188 B
Plaintext
{
|
|
// Error is on last line because this assumes "a" is an implicitly defined
|
|
// global until it reaches the end of the file.
|
|
var a = a + 1 // expect error line 7
|
|
System.print(a)
|
|
}
|