20 lines
437 B
Go
20 lines
437 B
Go
package objects
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func builtinLen(args ...Object) (Object, error) {
|
|
if len(args) != 1 {
|
|
return nil, fmt.Errorf("wrong number of arguments (got=%d, want=1)", len(args))
|
|
}
|
|
|
|
switch arg := args[0].(type) {
|
|
case *Array:
|
|
return &Int{int64(len(arg.Value))}, nil
|
|
case *String:
|
|
return &Int{int64(len(arg.Value))}, nil
|
|
default:
|
|
return nil, fmt.Errorf("unsupported type for 'len' function: %s", arg.TypeName())
|
|
}
|
|
}
|