Forked and more actively developed tengo version
Find a file
2019-04-08 19:54:02 -07:00
assert limit max object allocations (#129) 2019-03-06 17:20:05 -08:00
cli fix bytecode encoding/decoding of builtin modules (#154) 2019-03-20 01:28:40 -07:00
cmd fix bytecode encoding/decoding of builtin modules (#154) 2019-03-20 01:28:40 -07:00
compiler fix a bug in dead code elimination (#168) 2019-03-31 12:20:10 -07:00
docs Fixed interoperability doc (#174) 2019-04-08 19:51:26 -07:00
objects Made map IndexSet and IndexGet consistent. (#179) 2019-04-08 19:54:02 -07:00
runtime fix #171 (#172) 2019-04-01 08:02:11 -07:00
script bug fix for function return and if statement (#160) 2019-03-23 12:59:54 -07:00
stdlib json module faster implementation (#173) 2019-04-06 05:25:23 -07:00
.gitignore add goreleaser deploy to travis 2019-01-30 00:52:55 -08:00
.goreleaser.yml Decoupled stdlib from vm, script and compiler (#126) 2019-03-04 10:21:39 -08:00
.travis.yml add goreleaser deploy to travis 2019-01-30 00:52:55 -08:00
LICENSE Create LICENSE 2019-01-11 01:17:07 -08:00
Makefile module refactor (#148) 2019-03-18 08:15:26 -07:00
README.md update benchmark (#169) 2019-03-31 22:08:25 -07:00
tengo.go Limit the maximum size of string/bytes values (#121) 2019-03-01 10:48:02 -08:00

The Tengo Language

GoDoc Go Report Card Build Status

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"

Run this code in the Playground

Features

Benchmark

fib(35) fibt(35) Type
Go 48ms 3ms Go (native)
Tengo 2,349ms 5ms VM on Go
Lua 1,416ms 3ms Lua (native)
go-lua 4,402ms 5ms Lua VM on Go
GopherLua 4,023ms 5ms Lua VM on Go
Python 2,588ms 26ms Python (native)
starlark-go 11,126ms 6ms Python-like Interpreter on Go
gpython 15,035ms 4ms Python Interpreter on Go
goja 5,089ms 5ms JS VM on Go
otto 68,377ms 11ms JS Interpreter on Go
Anko 92,579ms 18ms Interpreter on Go

* 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

References