fix stack over flow printing bug

This commit is contained in:
2023-03-13 20:14:44 +00:00
parent 0a85087bb9
commit cf25d392be
3 changed files with 1 additions and 7 deletions

View File

@@ -1,7 +1,6 @@
package main
import (
"fmt"
"strings"
)
@@ -14,7 +13,6 @@ type UNPARSEcode struct {
// returns (number | string | nil), success, error, step
func translateVal(code UNPARSEcode, index int, codelines []UNPARSEcode, isLine int) (any, bool, ArErr, int) {
fmt.Println(code)
if isLine == 2 {
if isDeleteVariable(code) {
return parseDelete(code, index, codelines)