mirror of
https://github.com/MontFerret/ferret.git
synced 2025-07-05 00:49:00 +02:00
Hello world
This commit is contained in:
28
pkg/stdlib/lib.go
Normal file
28
pkg/stdlib/lib.go
Normal file
@ -0,0 +1,28 @@
|
||||
package stdlib
|
||||
|
||||
import (
|
||||
"github.com/MontFerret/ferret/pkg/runtime/core"
|
||||
"github.com/MontFerret/ferret/pkg/stdlib/collections"
|
||||
"github.com/MontFerret/ferret/pkg/stdlib/html"
|
||||
"github.com/MontFerret/ferret/pkg/stdlib/strings"
|
||||
"github.com/MontFerret/ferret/pkg/stdlib/types"
|
||||
"github.com/MontFerret/ferret/pkg/stdlib/utils"
|
||||
)
|
||||
|
||||
func NewLib() map[string]core.Function {
|
||||
lib := make(map[string]core.Function)
|
||||
|
||||
add := func(l map[string]core.Function) {
|
||||
for name, fn := range l {
|
||||
lib[name] = fn
|
||||
}
|
||||
}
|
||||
|
||||
add(types.NewLib())
|
||||
add(strings.NewLib())
|
||||
add(collections.NewLib())
|
||||
add(html.NewLib())
|
||||
add(utils.NewLib())
|
||||
|
||||
return lib
|
||||
}
|
Reference in New Issue
Block a user