Archived
0
0

整合子模块

This commit is contained in:
2025-11-10 03:01:42 +08:00
parent 07dc70df93
commit 0a0fb73e52
12 changed files with 142 additions and 28 deletions

View File

@@ -21,7 +21,8 @@ class Procession():
try:
self.current_atom = self.queue[self.cursor]
return 1 # 成功
except IndexError:
except IndexError as e:
print(f"{e}")
return 0
def append(self, atom = None):