nevalang / neva

🌊 Dataflow programming language with static types and implicit parallelism. Compiles to native code and Go
https://nevalang.org
MIT License
85 stars 7 forks source link

Chained connection as member of multiple receivers array #617

Open emil14 opened 1 month ago

emil14 commented 1 month ago

Currently you can't do this (from fizzbuzz example)

:data -> [
  lock:data -> :data,
  mod:data
]

That is handy if you need smt like this

:data -> lock:data -> :data
:data -> mod:data

But this one is impossible due to #473

emil14 commented 1 month ago

Currently you have to

:data -> [mod:data, lock:data]
...
lock:data -> :data