-
Hello! I am playing with expr and my use case is multi-line re-use expr scripts, am trying to do that like so: func main() {
env := map[string]interface{}{
"println": fmt.Println,
}
code := `
let foo = "asdf";
let bar = "fsda";
println(foo);
println(bar)
`
program, err := expr.Compile(code, expr.Env(env))
if err != nil {
panic(err)
}
output, err := expr.Run(program, env)
if err != nil {
panic(err)
}
fmt.Println(output)
} I've tried variations of I get either the following errors:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Currenly there is no way to do those. As Expr is designed to work with expressions. One "hack" to overcome this, is to return an expression:
Also I think we should add support for statments in Expr as well via a feature flag. |
Beta Was this translation helpful? Give feedback.
-
I've added support for SequenceNode! Now Expr, starting with 1.17, will support multiline expressions! foo();
bar();
let x = baz();
x + 1 |
Beta Was this translation helpful? Give feedback.
I've added support for SequenceNode! Now Expr, starting with 1.17, will support multiline expressions!