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

27 lines
691 B
Perl
Raw Normal View History

2015-04-05 02:31:09 -07:00
#!/usr/bin/env perl
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;