in reply to Re^8: How can I avoid code repetition here
in thread How can I avoid code repetition here
sub hello (_) {say "Hello, ", @_ ? $_[0] : $_} hello "world"; my $_ = "mars"; hello; { my $_ = "earth"; hello; } hello; __END__ Hello, world Hello, mars Hello, earth Hello, mars
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^10: How can I avoid code repetition here
by rovf (Priest) on Oct 12, 2009 at 09:43 UTC | |
by JavaFan (Canon) on Oct 12, 2009 at 11:03 UTC | |
by rovf (Priest) on Oct 12, 2009 at 11:10 UTC | |
by JavaFan (Canon) on Oct 12, 2009 at 11:17 UTC | |
by rovf (Priest) on Oct 12, 2009 at 11:24 UTC |