pbot/modules/compiler_vm/languages/tcl.pm

25 lines
508 B
Perl
Raw Normal View History

2019-05-28 04:40:50 +02:00
#!/usr/bin/env perl
use warnings;
use strict;
2019-06-26 18:34:19 +02:00
package tcl;
2019-05-28 04:40:50 +02:00
use parent '_default';
sub initialize {
my ($self, %conf) = @_;
$self->{sourcefile} = 'prog.tcl';
$self->{execfile} = 'prog.tcl';
$self->{default_options} = '';
$self->{cmdline} = 'tclsh $options $sourcefile';
$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;