finish operators

This commit is contained in:
2023-03-08 23:41:33 +00:00
parent 09deba8912
commit 0892b78fd4
6 changed files with 177 additions and 28 deletions

View File

@@ -13,10 +13,12 @@ func translateVal(code UNPARSEcode, index int, codelines []UNPARSEcode, isLine b
if isLine {
if isBlank(code) {
return nil, true, ArErr{}, 1
} else if isDeleteVariable(code) {
return parseDelete(code, index, codelines)
} else if isComment(code) {
resp, worked, err := parseComment(code, index, codelines)
resp, worked, err, step := parseComment(code, index, codelines)
if worked {
return resp, worked, err, 1
return resp, worked, err, step
}
}
}