Run evaluates given bytecode program.
(program *vm.Program, env any)
| 262 | |
| 263 | // Run evaluates given bytecode program. |
| 264 | func Run(program *vm.Program, env any) (any, error) { |
| 265 | return vm.Run(program, env) |
| 266 | } |
| 267 | |
| 268 | // Eval parses, compiles and runs given input. |
| 269 | func Eval(input string, env any) (any, error) { |