blob: cc2796f9fba481dc95b5d249c0c349070e4acb54 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package stdlib
import "github.com/d5/tengo/objects"
// BuiltinModules are builtin type standard library modules.
var BuiltinModules = map[string]map[string]objects.Object{
"math": mathModule,
"os": osModule,
"text": textModule,
"times": timesModule,
"rand": randModule,
"fmt": fmtModule,
"json": jsonModule,
}
|