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