mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-23 04:19:27 +01:00
Add Go language to compiler_vm
This commit is contained in:
parent
c8f35ddb09
commit
518f6d041f
18
modules/compiler_vm/languages/go.pm
Executable file
18
modules/compiler_vm/languages/go.pm
Executable file
@ -0,0 +1,18 @@
|
||||
#!/usr/bin/env perl
|
||||
|
||||
use warnings;
|
||||
use strict;
|
||||
|
||||
package go;
|
||||
use parent '_default';
|
||||
|
||||
sub initialize {
|
||||
my ($self, %conf) = @_;
|
||||
|
||||
$self->{sourcefile} = 'prog.go';
|
||||
$self->{execfile} = 'prog';
|
||||
$self->{default_options} = '';
|
||||
$self->{cmdline} = 'golang-go $options run $sourcefile';
|
||||
}
|
||||
|
||||
1;
|
Loading…
Reference in New Issue
Block a user