in reply to Re^5: Using Devel::REPL
in thread Using Devel::REPL
Here is header of my simple module:
Thank you @robby_dobby, I'll dig in my little code and try to see if I'm doing something wrong...#!/usr/bin/env perl package Wik; use v5.20.2; use strict; use warnings; use open qw/:std :utf8/; use utf8; use MediaWiki::Bot qw(:constants); use Data::Dumper; use YAML::Tiny; use Path::Tiny qw(path); use Getopt::Long; use HTTP::Date; use Pod::Usage; use URI::Escape; require Exporter; our $VERSION = 0.2; our @ISA = qw(Exporter); our @EXPORT = qw(login savepages updatepages);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: Using Devel::REPL
by robby_dobby (Hermit) on Jun 27, 2016 at 16:47 UTC |