On Tue, Apr 21, 2009 at 2:14 PM, Friedrich Weber
<
fred.reichbier@...> wrote:
> myObject setA(123) setB(456) setC(789)
>
> is the same as
>
> myObject a = 123
> myObject b = 456
> myObject c = 789
>
> but shorter :)
myObject do(
a = 123
b = 456
c = 789
)
is shorter still. ;)
--
Samuel A. Falvo II