1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-03-05 15:16:07 +02:00
2019-10-15 11:40:36 +03:00

11 lines
204 B
Go

package utils
import "github.com/MontFerret/ferret/pkg/runtime/core"
func RegisterLib(ns core.Namespace) error {
return ns.RegisterFunctions(core.FunctionsMap{
"WAIT": Wait,
"PRINT": Print,
})
}