xgo/compiler/stdlib/stdlib.go

11 lines
233 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-17 12:56:05 +03:00
"math": {Value: mathModule},
"os": {Value: osModule},
2019-01-18 21:17:24 +03:00
"exec": {Value: execModule},
2019-01-17 12:56:05 +03:00
}