mirror of
https://github.com/perlbot/perlbuut
synced 2025-06-07 17:15:40 -04:00
11 lines
165 B
Perl
Executable file
11 lines
165 B
Perl
Executable file
#!/usr/bin/env perl
|
|
use strict;
|
|
use warnings;
|
|
|
|
use lib './lib';
|
|
use Bot::BB3::DebugCrypt;
|
|
|
|
|
|
my $data = join ' ', @ARGV;
|
|
print "Decrypted: ", decrypt($data), "\n";
|
|
|