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

@@ -21,6 +21,8 @@ func runVal(line any, stack stack) (any, ArErr) {
return x, ArErr{}
case call:
return runCall(x, stack)
case factorial:
return runFactorial(x, stack)
case accessVariable:
return readVariable(x, stack)
case ArMapGet: