1
0
forked from Mirror/wren
Files
wren/test/meta/eval_existing_scoped_variable.wren
Bob Nystrom d5b9f0096c Move Meta to a separate module.
Also cleaned up some of the code around loading the core module.
2015-10-15 18:08:56 -07:00

7 lines
79 B
Plaintext

import "meta" for Meta
var y
Meta.eval("y = 2")
System.print(y) // expect: 2