xgo/objects/builtin_print.go
2019-01-08 23:17:42 -08:00

13 lines
167 B
Go

package objects
import (
"fmt"
)
func builtinPrint(args ...Object) (Object, error) {
for _, arg := range args {
fmt.Println(arg.String())
}
return nil, nil
}