Python-symbolic/python_symb/symbols.py
2023-07-31 04:39:20 +02:00

8 lines
131 B
Python

from __future__ import annotations
class Symbols:
__slots__ = 'name'
def __init__(self, name):
self.name = name