10 lines
233 B
Go
10 lines
233 B
Go
package stdlib
|
|
|
|
import "github.com/d5/tengo/objects"
|
|
|
|
// Modules contain the standard modules.
|
|
var Modules = map[string]*objects.ImmutableMap{
|
|
"math": {Value: mathModule},
|
|
"os": {Value: osModule},
|
|
"exec": {Value: execModule},
|
|
}
|