pbot/modules/compiler_vm/languages/python.pm

19 lines
311 B
Perl
Raw Normal View History

2015-01-19 03:36:57 +01:00
#!/usr/bin/env perl
use warnings;
use strict;
package python;
use parent '_default';
sub initialize {
my ($self, %conf) = @_;
$self->{sourcefile} = 'prog.py';
$self->{execfile} = 'prog.py';
$self->{default_options} = '';
$self->{cmdline} = 'python $options $sourcefile';
}
1;