Hat jemand von euch Erfahrung mit diesem Modul?
Ich hab ein kleines script geschrieben, das keine Fehler bringt, aber connecten tut er auch nicht...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/perl
use strict;
use warnings;
use Net::IRC;
my $irc = new Net::IRC;
my $conn = $irc->newconn( Nick => 'J-jayz-Z_perl',
Server => 'irc.bw-networx.net',
Port => 6667,
Channel => '#newbies',
Ircname => 'Kein Kommentar');
$irc->start;
Ist eigentlich fast aus CPAN übernommen, geht aber trotzdem nicht...
Kann jemand helfen?
perl -Mstrict -Mwarnings -e 'package blub; sub new { bless {} } sub bar {my $self=shift; $self->{bla}="5065726c2d436f6d6d756e697479"; return $self->{bla};} my $foo=blub->new();print "Hallo ";print pack("H*",$foo->bar()); print "\n"'
http://perl-tutor.de