in reply to each function

There are very good reasons to avoid using each entirely.

use Moops; class Cow :rw { has name => (default => 'Ermintrude') }; say Cow->new->name

Replies are listed 'Best First'.
Re^2: each function
by adriang (Sexton) on Jun 04, 2014 at 17:28 UTC

    Thanks, it help me alot.