Files
cclang/src/runtime/abc/variable_stack_abc.py
T
2021-08-02 15:58:05 +02:00

8 lines
117 B
Python

from abc import ABC, abstractmethod
class VariableStackABC(ABC):
@abstractmethod
def __init__(self): pass