mirror of
https://github.com/pragma-/pbot.git
synced 2024-12-25 12:12:34 +01:00
compiler_vm: add tcl language
This commit is contained in:
parent
6f282d2968
commit
39f0ac3d95
28
modules/compiler_vm/languages/tcl.pm
Executable file
28
modules/compiler_vm/languages/tcl.pm
Executable file
@ -0,0 +1,28 @@
|
|||||||
|
#!/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;
|
Loading…
Reference in New Issue
Block a user