From 9641657502b966ff3068688eb45885da41926ae8 Mon Sep 17 00:00:00 2001 From: mryouse Date: Fri, 13 May 2022 22:19:16 +0000 Subject: initial commit of 'many' --- tokens.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tokens.py') diff --git a/tokens.py b/tokens.py index de482c2..1f1fe1b 100644 --- a/tokens.py +++ b/tokens.py @@ -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): -- cgit v1.2.3