2015-04-05 11:31:09 +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
|
|
|
|
|
2015-04-05 11:31:09 +02:00
|
|
|
use warnings;
|
|
|
|
use strict;
|
|
|
|
|
|
|
|
package freebasic;
|
|
|
|
use parent '_default';
|
|
|
|
|
|
|
|
sub initialize {
|
|
|
|
my ($self, %conf) = @_;
|
|
|
|
|
|
|
|
$self->{sourcefile} = 'prog.bas';
|
|
|
|
$self->{execfile} = 'prog';
|
|
|
|
$self->{default_options} = '';
|
|
|
|
$self->{cmdline} = 'fbc -g $options $sourcefile';
|
|
|
|
|
|
|
|
$self->{cmdline_opening_comment} = "/'\n=============== CMDLINE ===============\n";
|
|
|
|
$self->{cmdline_closing_comment} = "=============== CMDLINE ===============\n'/\n";
|
|
|
|
|
|
|
|
$self->{output_opening_comment} = "/'\n=============== OUTPUT ===============\n";
|
|
|
|
$self->{output_closing_comment} = "=============== OUTPUT ===============\n'/\n";
|
|
|
|
|
|
|
|
$self->{sprunge_lexer} = 'basic';
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|