diff options
| author | mryouse | 2022-06-22 04:03:13 +0000 | 
|---|---|---|
| committer | mryouse | 2022-06-22 04:03:13 +0000 | 
| commit | 810d01108110901a290aa4d4a9cdf96187430d0d (patch) | |
| tree | 4d8b1142e70b0c08426644ac35319febacb88228 /neb/typeclass.py | |
| parent | 7e69cf2d253ba12055b827c584380438e2e0a70f (diff) | |
initial commit of user defined types!
Diffstat (limited to 'neb/typeclass.py')
| -rw-r--r-- | neb/typeclass.py | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/neb/typeclass.py b/neb/typeclass.py index eae412c..9e37a2d 100644 --- a/neb/typeclass.py +++ b/neb/typeclass.py @@ -9,6 +9,7 @@ class TypeEnum(Enum):      LIST = auto()      LITERAL = auto()      BOOL = auto() +    USER = auto()      def __str__(self):          return f":{self.name.lower()}" | 
