JoshOrndorff / librho

A Standard Library for Rholang
Apache License 2.0
12 stars 6 forks source link

Add explicit tupling idea to styleguide #19

Open JoshOrndorff opened 5 years ago

JoshOrndorff commented 5 years ago

Bad

chan!(4, 5, *return)

Good

chan!((4, 5, *return))

Bad

for (@x, @y, return <- chan) { ... }

Good

for (@(x, y, return) <- chan) { ... }

Motivation: