zuzu-rust 0.6.0

Rust implementation of ZuzuScript
Documentation
1
2
3
4
5
6
7
8
9
10
11
from std/eval import eval;
from test/more import *;

let x := 41;
is( eval("x + 1;"), 42, "eval can read caller scope" );

let y := 9;
eval("y += 2;");
is( y, 11, "eval can write caller scope" );

done_testing();