add rounding

This commit is contained in:
2023-03-10 21:39:58 +00:00
parent fe05d818de
commit 7e10423b54
11 changed files with 161 additions and 39 deletions

View File

@@ -51,6 +51,8 @@ func translateVal(code UNPARSEcode, index int, codelines []UNPARSEcode, isLine b
return parseNumber(code)
} else if isNegative(code) {
return parseNegative(code, index, codelines)
} else if isFactorial(code) {
return parseFactorial(code, index, codelines)
} else if isCall(code) {
call, worked, err, step := parseCall(code, index, codelines)
if worked {