What I means is obj.(f1() , f2()) may better than obj.f1()#f2(), thought your syntax is shorter.
1. it does not need new operator.
2. # is comment in some other languages
3. if you want result, you can do with obj.(a = f1(), b = f2()) or [a,b] = obj.(f1(), f2())

"Edwin Reynoso" <[email protected]>
That's not possible @Eric

On Mon, Oct 26, 2015 at 2:20 AM, Eric Suen <[email protected]> wrote:
with

obj.(doSomething(), doSomething2());

you don’t need to introduce new operator.
_______________________________________________
es-discuss mailing list
mailto:[email protected]
https://mail.mozilla.org/listinfo/es-discuss



_______________________________________________
es-discuss mailing list
[email protected]
https://mail.mozilla.org/listinfo/es-discuss

_______________________________________________
es-discuss mailing list
[email protected]
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to