mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-19 10:29:30 +01:00
Add qbasic language (using freebasic -lang qb)
This commit is contained in:
parent
06ee49d7ff
commit
d001720f11
26
modules/compiler_vm/languages/qbasic.pm
Executable file
26
modules/compiler_vm/languages/qbasic.pm
Executable 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;
|
9
modules/compiler_vm/languages/server/qbasic.pm
Executable file
9
modules/compiler_vm/languages/server/qbasic.pm
Executable file
@ -0,0 +1,9 @@
|
|||||||
|
#!/usr/bin/perl
|
||||||
|
|
||||||
|
use warnings;
|
||||||
|
use strict;
|
||||||
|
|
||||||
|
package qbasic;
|
||||||
|
use parent '_c_base';
|
||||||
|
|
||||||
|
1;
|
Loading…
Reference in New Issue
Block a user