3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-01 17:16:39 +02:00

Add qbasic language (using freebasic -lang qb)

This commit is contained in:
Pragmatic Software 2015-05-18 20:49:12 -07:00
parent 06ee49d7ff
commit d001720f11
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,26 @@
#!/usr/bin/env perl
use warnings;
use strict;
package qbasic;
use parent '_default';
sub initialize {
my ($self, %conf) = @_;
$self->{sourcefile} = 'prog.bas';
$self->{execfile} = 'prog';
$self->{default_options} = '';
$self->{cmdline} = 'fbc -g -lang qb $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;

View File

@ -0,0 +1,9 @@
#!/usr/bin/perl
use warnings;
use strict;
package qbasic;
use parent '_c_base';
1;