mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-09 13:39:34 +01:00
46 lines
1.0 KiB
Perl
Executable File
46 lines
1.0 KiB
Perl
Executable File
#!/usr/bin/env perl
|
|
|
|
use warnings;
|
|
use strict;
|
|
|
|
use File::Basename;
|
|
|
|
my $language = shift @ARGV // 'c11';
|
|
$language = lc $language;
|
|
|
|
eval {
|
|
use lib 'languages';
|
|
require "$language.pm";
|
|
} or do {
|
|
print "Language '$language' is not supported.\n";
|
|
|
|
my @languages = glob 'languages/*.pm';
|
|
my $comma = '';
|
|
print "Supported languages are: ";
|
|
foreach my $lang (sort @languages) {
|
|
$lang = basename($lang);
|
|
next if $lang =~ m/^_/;
|
|
$lang =~ s/\.pm$//;
|
|
print "$comma$lang";
|
|
$comma = ', ';
|
|
}
|
|
print "\n";
|
|
|
|
exit;
|
|
};
|
|
|
|
my $nick = shift @ARGV // (print "Missing nick argument.\n" and die);
|
|
my $channel = shift @ARGV // (print "Missing channel argument.\n" and die);
|
|
my $code = join(' ', @ARGV);
|
|
|
|
my $lang = $language->new(nick => $nick, channel => $channel, lang => $language, code => $code);
|
|
|
|
$lang->process_interactive_edit;
|
|
$lang->process_standard_options;
|
|
$lang->process_custom_options;
|
|
$lang->process_cmdline_options;
|
|
$lang->preprocess_code;
|
|
$lang->execute;
|
|
$lang->postprocess_output;
|
|
$lang->show_output;
|