Is it possible to use dot notation in Perl 5, possibly by installing a module etc.?
If so, please send a link to a moderately small working example. Can the parentheses be omitted when there are no arguments? e.g. if ($s.er) # where er() is a method Can it be mixed this with regular function notation? e.g. w($s.er) Can the dot notation be used of the LHS of an assignment to actually store a value? e.g. $s.er = "foo"; If so, would the following be valid, or do I need to use something like memoization instead? e.g. $s.er = $s.er; I Thanks, Steve _______________________________________________ Boston-pm mailing list [email protected] http://mail.pm.org/mailman/listinfo/boston-pm

