13 lines
167 B
Go
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
|
|
}
|