Florian Hinzmann writes: > Is it possible to install Perl modules wich are not > packaged for Debian?
Yes, it is. Just follow the instructions which come with the module. -- #!/usr/bin/perl -w -- Ari Makela <[EMAIL PROTECTED]> - http://www.iki.fi/hauva/ use strict;my $j=Japh->new();$j->print();package Japh;sub new{my $c=shift; my $s={j=>'rekcaH lreP rehtonA tsuJ'};bless $s,$c;return $s;}sub print{my $s=shift;$s->{j}=reverse($s->{j});print $s->{j},"\n";}1;

