in reply to Re^6: check possible combination of sum using given array
in thread check possible combination of sum using given array
Even return and return undef aren't the same.
sub plain { return } sub Undef { return undef } my @empty = plain(); my @nonempty = Undef(); die 'Different' unless @empty == @nonempty;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^8: check possible combination of sum using given array
by karlgoethebier (Abbot) on Jul 11, 2019 at 18:02 UTC |