diff --git a/compiler/compiler/func.go b/compiler/compiler/func.go index b99c438..2f6903a 100644 --- a/compiler/compiler/func.go +++ b/compiler/compiler/func.go @@ -425,8 +425,6 @@ func (c *Compiler) compileCallNode(v *parser.CallNode) value.Value { return c.capFuncCall(v) case "append": return c.appendFuncCall(v) - case "print": - return c.printFuncCall(v) case "panic": message, _ := v.Arguments[0].(*parser.ConstantNode) c.panic(c.contextBlock, message.ValueStr)