3
0
mirror of https://github.com/pragma-/pbot.git synced 2025-02-10 19:40:56 +01:00

28 lines
611 B
Perl
Raw Normal View History

2019-05-27 19:40:50 -07:00
#!/usr/bin/env perl
2021-07-10 15:00:22 -07:00
# SPDX-FileCopyrightText: 2021 Pragmatic Software <pragma78@gmail.com>
# SPDX-License-Identifier: MIT
2019-05-27 19:40:50 -07:00
use warnings;
use strict;
2019-06-26 09:34:19 -07:00
package tcl;
2019-05-27 19:40:50 -07: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;