sub updateStaedte { my $isEurope = shift; my @eu_staedte = qw(Berlin London Paris); my @am_staedte = qw(Chicago Dallas); if ($isEurope) { return @eu_staedte; } else { return @am_staedte; } }