Piers Cawley writes: : Consider the following. : : sub foo {...} : : foo *@ary; : foo * @ary; : : Is this another place where whitespace will have meaning? Or should I : add parentheses to disambiguate? Enquiring minds want to know.
I see no ambiguity. It's a unary * in either case. You'd have to declare it sub foo () {...} to get a multiply out of it. Larry