Tengo fork for sprojects

Max Kuznetsov c461a7fe60 Fix: stop execution when trying to slice an unsupported type (#443) 6 bulan lalu
.github 55f2519b16 update go version to fix goreleaser (#422) 1 tahun lalu
cmd 4ed75764ce enable relative imports (#285) 4 tahun lalu
docs 47062da36a Add `os.arch` and `os.platform` (#437) 6 bulan lalu
examples d8b50efec5 add interoperability example (#266) 4 tahun lalu
parser e9b03930ce fix the import expr string output (#440) 6 bulan lalu
require d5b24138d3 add go module v2 (#244) 4 tahun lalu
stdlib 47062da36a Add `os.arch` and `os.platform` (#437) 6 bulan lalu
testdata 4846cf5243 add custom extension support for importing source file (#350) 2 tahun lalu
token a9a233a750 fix internal package issue (#241) 4 tahun lalu
.gitignore 47062da36a Add `os.arch` and `os.platform` (#437) 6 bulan lalu
.goreleaser.yml 6fb0df750b updated goreleaser config (#249) 4 tahun lalu
LICENSE fbbec8853b Create LICENSE 5 tahun lalu
Makefile 4ed75764ce enable relative imports (#285) 4 tahun lalu
README.md 818d6dc687 vim syntax highlighter (#383) 2 tahun lalu
builtins.go 885830428b PR: builtin range function #326 (#328) 3 tahun lalu
builtins_test.go 885830428b PR: builtin range function #326 (#328) 3 tahun lalu
bytecode.go d1dd01499f fix a bug in bytecode optimization code (#292) 4 tahun lalu
bytecode_test.go d5b24138d3 add go module v2 (#244) 4 tahun lalu
compiler.go e338512259 fix: do not invert token.Less to token.Greater in compiler (#391) 2 tahun lalu
compiler_test.go 18b953c7be increase size of jump operands (#438) 9 bulan lalu
doc.go a9a233a750 fix internal package issue (#241) 4 tahun lalu
errors.go 885830428b PR: builtin range function #326 (#328) 3 tahun lalu
eval.go ac805806f8 add Eval function (#338) 3 tahun lalu
eval_test.go ac805806f8 add Eval function (#338) 3 tahun lalu
example_test.go d5b24138d3 add go module v2 (#244) 4 tahun lalu
formatter.go c88a5f506e some code clean up (#237) 4 tahun lalu
go.mod d5b24138d3 add go module v2 (#244) 4 tahun lalu
go.sum 7cb058b564 fix go.sum (#238) 4 tahun lalu
instructions.go 18b953c7be increase size of jump operands (#438) 9 bulan lalu
iterator.go c88a5f506e some code clean up (#237) 4 tahun lalu
modules.go 3b65ddf2b8 Extract ModuleGetter interface for dynamic imports (#349) 2 tahun lalu
objects.go 0afdfdeb2f Fix copying user functions (#366) 2 tahun lalu
objects_test.go d5b24138d3 add go module v2 (#244) 4 tahun lalu
script.go f980e7e724 Downgrade exclusive lock to shared lock when cloning a script (#400) 1 tahun lalu
script_test.go dfcfd6661c Use Object.Copy when cloning globals in Compiled (#393) 2 tahun lalu
symbol_table.go 2565e0553d fix issues with symbols in global scope blocks (#318) 4 tahun lalu
symbol_table_test.go 15494e1691 fix local symbol resolution bug (#316) 4 tahun lalu
tengo.go 4846cf5243 add custom extension support for importing source file (#350) 2 tahun lalu
tengo_test.go d5b24138d3 add go module v2 (#244) 4 tahun lalu
variable.go c88a5f506e some code clean up (#237) 4 tahun lalu
variable_test.go d5b24138d3 add go module v2 (#244) 4 tahun lalu
vm.go c461a7fe60 Fix: stop execution when trying to slice an unsupported type (#443) 6 bulan lalu
vm_test.go c461a7fe60 Fix: stop execution when trying to slice an unsupported type (#443) 6 bulan lalu

README.md

The Tengo Language

GoDoc test Go Report Card

Tengo is a small, dynamic, fast, secure script language for Go.

Tengo is fast and secure because it's compiled/executed as bytecode on stack-based VM that's written in native Go.

/* The Tengo Language */
fmt := import("fmt")

each := func(seq, fn) {
    for x in seq { fn(x) }
}

sum := func(init, seq) {
    each(seq, func(x) { init += x })
    return init
}

fmt.println(sum(0, [1, 2, 3]))   // "6"
fmt.println(sum("", [1, 2, 3]))  // "123"

Test this Tengo code in the Tengo Playground

Features

Benchmark

fib(35) fibt(35) Language (Type)
Tengo 2,315ms 3ms Tengo (VM)
go-lua 4,028ms 3ms Lua (VM)
GopherLua 4,409ms 3ms Lua (VM)
goja 5,194ms 4ms JavaScript (VM)
starlark-go 6,954ms 3ms Starlark (Interpreter)
gpython 11,324ms 4ms Python (Interpreter)
Yaegi 11,715ms 10ms Yaegi (Interpreter)
otto 48,539ms 6ms JavaScript (Interpreter)
Anko 52,821ms 6ms Anko (Interpreter)
- - - -
Go 47ms 2ms Go (Native)
Lua 756ms 2ms Lua (Native)
Python 1,907ms 14ms Python2 (Native)

* fib(35): Fibonacci(35)
_* fibt(35): tail-call version of Fibonacci(35)_
* Go does not read the source code from file, while all other cases do
* See here for commands/codes used

Quick Start

go get github.com/d5/tengo/v2

A simple Go example code that compiles/runs Tengo script code with some input/output values:

package main

import (
	"context"
	"fmt"

	"github.com/d5/tengo/v2"
)

func main() {
	// create a new Script instance
	script := tengo.NewScript([]byte(
`each := func(seq, fn) {
    for x in seq { fn(x) }
}

sum := 0
mul := 1
each([a, b, c, d], func(x) {
    sum += x
    mul *= x
})`))

	// set values
	_ = script.Add("a", 1)
	_ = script.Add("b", 9)
	_ = script.Add("c", 8)
	_ = script.Add("d", 4)

	// run the script
	compiled, err := script.RunContext(context.Background())
	if err != nil {
		panic(err)
	}

	// retrieve values
	sum := compiled.Get("sum")
	mul := compiled.Get("mul")
	fmt.Println(sum, mul) // "22 288"
}

Or, if you need to evaluate a simple expression, you can use Eval function instead:

res, err := tengo.Eval(ctx,
	`input ? "success" : "fail"`,
	map[string]interface{}{"input": 1})
if err != nil {
	panic(err)
}
fmt.Println(res) // "success"

References