server
This commit is contained in:
@@ -2,12 +2,13 @@ package builtins
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"monkey/internal/context"
|
||||
"monkey/internal/object"
|
||||
"monkey/internal/typing"
|
||||
)
|
||||
|
||||
// Chr ...
|
||||
func Chr(args ...object.Object) object.Object {
|
||||
func Chr(ctx context.Context, args ...object.Object) object.Object {
|
||||
if err := typing.Check(
|
||||
"chr", args,
|
||||
typing.ExactArgs(1),
|
||||
|
||||
Reference in New Issue
Block a user