in reply to The Grouping of Objects
I assume player lookup by numer is done within the context of a team. You could do it like this:
$player = { grep $_->number() eq $n) $team->players(); print "Player $n is ", $player->name(), "\n" if $player;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re (tilly) 2: The Grouping of Objects
by tilly (Archbishop) on May 06, 2001 at 06:20 UTC |