- or download this
some_sub(s/^[\*\+-] (.+)/$1/r, $opt);
some_sub(s/^[\*\+-] (.+)/$1/r, $opt);
some_sub(s/^[\+-] (.+)/$1/r, $opt);
- or download this
Base::Inline
Base::LineMagic
...
Xanth::Util
Zodiac::Chinese
- or download this
my @monsters = map{chomp $_; $_} <$word_find_list>;
my @items;
...
@{$alpha_gems{$gems}} = map { "$_ ".external_links([['Wikipedia', $_
+, $_],['Google', searchify($_), $_]]) } sort @list;
}
- or download this
my @monsters = map { chomp $_; [$_, { class => 'monster_item' }] } <$w
+ord_find_list>;
my @gems = map { chomp $_; "$_ ".external_links([['Wikipedia', $_, $_]
+,['Google', searchify($_), $_]]) } <$gems_file>;
my %alpha_gems = alpha_array(\@gems);
- or download this
if ($user_time < $dawn) {
$daypart = 'night';
...
else {
$daypart = 'evening';
)
- or download this
#!/usr/bin/perl
use strict;
...
'evening' => { 'begin' => tmath($dusk, -1) , 'end' => tmath($dusk,
+ 1) },
'night' => { 'begin' => tmath($dusk, 1) , 'end' => $dawn}
);
- or download this
use strict;
use warnings FATAL => qw( all );
...
}
}
- or download this
$ perl la-2.pl 2>&1
...
fold clothing of the day
put away clothing of the day
- or download this
#!/usr/bin/perl
use strict;
...
my $file = data_file('Movies/Episode_lists',"$filename.txt");
system("xdg-open", $file) == 0 || warn "Can't open $file";
}