Files
wren/test/meta/eval_existing_scoped_variable.wren
T

7 lines
79 B
Plaintext
Raw Normal View History

2015-10-15 18:08:56 -07:00
import "meta" for Meta
var y
Meta.eval("y = 2")
2015-09-15 07:46:09 -07:00
System.print(y) // expect: 2