mirror of
https://github.com/pragma-/pbot.git
synced 2024-12-25 04:02:37 +01:00
Add bc language to compiler_vm
This commit is contained in:
parent
361b53a64e
commit
383c9f7813
23
modules/compiler_vm/languages/bc.pm
Executable file
23
modules/compiler_vm/languages/bc.pm
Executable file
@ -0,0 +1,23 @@
|
||||
#!/usr/bin/env perl
|
||||
|
||||
use warnings;
|
||||
use strict;
|
||||
|
||||
package bc;
|
||||
use parent '_default';
|
||||
|
||||
sub initialize {
|
||||
my ($self, %conf) = @_;
|
||||
|
||||
$self->{sourcefile} = 'prog.bc';
|
||||
$self->{execfile} = 'prog.bc';
|
||||
$self->{default_options} = '';
|
||||
$self->{cmdline} = 'bc -q $options $sourcefile';
|
||||
}
|
||||
|
||||
sub preprocess_code {
|
||||
my $self = shift;
|
||||
$self->{code} .= "\nquit\n";
|
||||
}
|
||||
|
||||
1;
|
Loading…
Reference in New Issue
Block a user