tengo:一种用于Go的快速脚本语言 源码
Tengo语言 Tengo是Go的一种小型,动态,快速,安全的脚本语言。 Tengo是和安全的,因为它在以本机Go编写的基于堆栈的VM上作为字节码进行编译/执行。 /* 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 (
文件列表
tengo:一种用于Go的快速脚本语言
(预估有个110文件)
.gitignore
5B
compiler.go
32KB
script_test.go
12KB
compiler_test.go
41KB
vm.go
21KB
vm_test.go
108KB
objects_test.go
21KB
formatter.go
28KB
text.go
22KB
func_typedefs.go
28KB
暂无评论