diff options
| author | mryouse | 2022-05-13 22:19:16 +0000 | 
|---|---|---|
| committer | mryouse | 2022-05-13 22:19:16 +0000 | 
| commit | 9641657502b966ff3068688eb45885da41926ae8 (patch) | |
| tree | 2b84ab49ee2f2ee4e93b855011929e7e5211c316 /tokens.py | |
| parent | c6ce5c7f9f34b95504cb3286a677e106fa99c8e7 (diff) | |
initial commit of 'many'
Diffstat (limited to 'tokens.py')
| -rw-r--r-- | tokens.py | 3 | 
1 files changed, 2 insertions, 1 deletions
| @@ -104,10 +104,11 @@ class NebExpression(NebBaseType):  class NebFunction(): -    def __init__(self, name, args, returns): +    def __init__(self, name, args, returns, many=None):          self.name = name          self.args = args          self.returns = returns +        self.many = many  class NebBool(NebLiteral):      def __init__(self, value): | 
