[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Proposal for a standard way of defining custom operators in Lua
- From: Mark Hamburg <mhamburg.ml@...>
- Date: Sat, 27 Jul 2013 13:03:27 -0700
On Jul 24, 2013, at 11:33 AM, Leo Romanoff <romixlev@yahoo.com> wrote:
> dst <- msg1 <- msg2 <-msg3 vs send(send(send(dst, msg1), msg2), msg3)
But that could also be:
dst:send( msg1 )
:send( msg2 )
:send( msg3 )
Mark