xgo/compiler/stdlib/stdlib.go

13 lines
299 B
Go
Raw Normal View History

2019-01-18 12:43:46 +03:00
package stdlib
2019-01-17 12:56:05 +03:00
import "github.com/d5/tengo/objects"
// Modules contain the standard modules.
2019-01-18 12:43:46 +03:00
var Modules = map[string]*objects.ImmutableMap{
2019-01-30 04:39:25 +03:00
"math": {Value: mathModule},
"os": {Value: osModule},
"text": {Value: textModule},
"times": {Value: timesModule},
2019-02-09 23:33:35 +03:00
"rand": {Value: randModule},
2019-01-17 12:56:05 +03:00
}