Добавить executor/state.py
Test Actions / Builder (push) Failing after 6s

This commit is contained in:
2026-03-21 00:54:07 +03:00
parent 5b3dd0ed5d
commit 9f00a3d2a0
+11
View File
@@ -0,0 +1,11 @@
__author__ = 'RemiZOffAlex'
__email__ = 'remizoffalex@mail.ru'
class State:
def __init__(self):
self.variables = {}
self.environments = {}
self.scopes = {'root': {}}
self.current = 'root'
self.closures = []