Re: Predeclaration of subs

2004-07-07 Thread Larry Wall
On Tue, Jul 06, 2004 at 07:41:22PM -0600, Luke Palmer wrote: : Considering that: : : $obj.meth "foo"; : : No longer needs parentheses, and that argument processing is done on the : callee rather than the caller side (well, most of the time), do I still : have to predeclare C if I want to say:

Predeclaration of subs

2004-07-06 Thread Luke Palmer
Considering that: $obj.meth "foo"; No longer needs parentheses, and that argument processing is done on the callee rather than the caller side (well, most of the time), do I still have to predeclare C if I want to say: foo "bar", "baz"; ? Also, how does: method evil($x is rw) Wor