From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
12345678910111213141516 #! perluse strict;use warnings;package Comics::Plugin::OffTheMark;use parent qw(Comics::Fetcher::GoComics);our $VERSION = "1.02";our $name = "Off the mark";our $url = "https://www.gocomics.com/offthemark";# Important: Return the package name!__PACKAGE__;
#! perl
use
strict;
warnings;
package
Comics::Plugin::OffTheMark;
parent
qw(Comics::Fetcher::GoComics)
;
our
$VERSION
=
"1.02"
$name
"Off the mark"
$url
"https://www.gocomics.com/offthemark"
# Important: Return the package name!
__PACKAGE__;