Your IP : 216.73.216.74


Current Path : /usr/share/doc/perl-WWW-Pastebin-PastebinCom-Create/examples/
Upload File :
Current File : //usr/share/doc/perl-WWW-Pastebin-PastebinCom-Create/examples/paste.pl

#!/usr/bin/env perl

use strict;
use warnings;
use lib qw(../lib  lib);
use WWW::Pastebin::PastebinCom::Create;

my $bin = WWW::Pastebin::PastebinCom::Create->new;

$bin->paste(
    text    => q{
        #!/usr/bin/env perl

        use strict;
        use warnings;
        use lib qw(../lib  lib);
    },
    format  => 'perl',
    expiry  => 'asap',
    desc    => 'test paste',
    private => 1,
) or die $bin->error;

print "Your paste uri is $bin\n";