Hi,
I can’t seem to find any implementation of collections in CS.
I would like to be able to replace something like this:
u: (cond1) $$var1 =1
u: (cond2) $$var2 =0
u: ():
if $$var1==1 and $$var2==1)
respond something
with this:
u: (cond1) $$col1.add(1)
u: (cond2) $$col1.add(0)
u: ():
for $$col1….
Basically, any collection would do, but off course variations like lists and hash would be nice.
If I’m missing something, please point me in the right direction.
Thanks