2019-05-28 04:40:50 +02:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
|
2021-07-11 00:00:22 +02:00
|
|
|
# SPDX-FileCopyrightText: 2021 Pragmatic Software <pragma78@gmail.com>
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
2019-05-28 04:40:50 +02:00
|
|
|
use warnings;
|
|
|
|
use strict;
|
|
|
|
|
2022-01-23 16:49:23 +01:00
|
|
|
package Languages::tcl;
|
|
|
|
use parent 'Languages::_default';
|
2019-05-28 04:40:50 +02:00
|
|
|
|
|
|
|
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;
|