in reply to Re^3: Some Insights from a Traveler Between Languages
in thread Some Insights from a Traveler Between Languages
So you basically want a count() operator, then? Ironically, that can be easily implemented using the scalar operator.
sub count { scalar @_ };
|
|---|