3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-03 09:58:42 +02:00
pbot/modules/compiler_vm/languages/tcl.pm
2019-05-27 19:40:50 -07:00

29 lines
596 B
Perl
Executable File

#!/usr/bin/env perl
use warnings;
use strict;
package tcl;
use parent '_default';
sub initialize {
my ($self, %conf) = @_;
$self->{sourcefile} = 'prog.tcl';
$self->{execfile} = 'prog.tcl';
$self->{default_options} = '';
$self->{cmdline} = 'tclsh $options $sourcefile';
if (length $self->{arguments}) {
$self->{cmdline} .= " $self->{arguments}";
}
$self->{cmdline_opening_comment} = "set CMDLINE {\n";
$self->{cmdline_closing_comment} = "}\n";
$self->{output_opening_comment} = "set OUTPUT {\n";
$self->{output_closing_comment} = "}\n";
}
1;