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

Add the Brainfuck language to compiler_vm

This commit is contained in:
Pragmatic Software 2015-01-16 17:56:28 -08:00
parent f552695393
commit b7fe220152

View File

@ -0,0 +1,18 @@
#!/usr/bin/env perl
use warnings;
use strict;
package bf;
use parent '_default';
sub initialize {
my ($self, %conf) = @_;
$self->{sourcefile} = 'prog.bf';
$self->{execfile} = 'prog.bf';
$self->{default_options} = '';
$self->{cmdline} = 'bf $options $sourcefile';
}
1;