impliment do wraps

This commit is contained in:
2023-03-11 01:43:37 +00:00
parent 6dcb996f61
commit 597be4e0df
15 changed files with 193 additions and 64 deletions

View File

@@ -50,6 +50,10 @@ func runVal(line any, stack stack) (any, ArErr) {
return runVal(x.VAL, stack)
case operationType:
return runOperation(x, stack)
case dowrap:
return runDoWrap(x, stack)
case CallJumpStatment:
return runJumpStatment(x, stack)
case ArDelete:
return runDelete(x, stack)
}