Thread Modul als Framework (12 answers)
Opened by bloonix at 2006-10-06 23:27

bloonix
 2006-10-08 21:32
#70635 #70635
User since
2005-12-17
1615 Artikel
HausmeisterIn
[Homepage]
user image
Hi esskar,

ja, 100%, darauf bin ich auch schon gekommen und der Aufruf
von require linux; klappt ja auch!

Wenn ich ein .pm anhänge, dann klappt es erst!

test.pl

Code: (dl )
1
2
3
4
5
6
7
#!/usr/bin/perl
use strict;
use warnings;

my $OS = $^O;
require "${OS}.pm";
linux->foo;


linux.pm

Code: (dl )
1
2
3
4
5
package linux;

sub foo { print "$_[0]\n"; }

1;


aber mit require $OS; leider nicht.

Woran könnte das sonst noch liegen?
What is a good module? That's hard to say.
What is good code? That's also hard to say.
One man's Thing of Beauty is another's man's Evil Hack.

View full thread Modul als Framework