lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


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