Thread Ersatz für given (12 answers)
Opened by silver345 at 2014-01-31 14:40

GwenDragon
 2014-02-03 09:39
#173356 #173356
User since
2005-01-17
14773 Artikel
Admin1
[Homepage]
user image
Oder wenn du es übersichtlicher willst:
Code (perl): (dl )
1
2
3
4
5
6
7
8
my $package_sub = sub _suppen_paket { ... };
my $profile_sub = sub _prof_feile { ... };

my %switch = (
  'package' => $package_sub, 
  'profile' => $profile_sub,
);
$switch{ $site->{ FILETYP } }->();

View full thread Ersatz für given