mirror of
https://github.com/pragma-/pbot.git
synced 2025-03-03 13:00:47 +01:00
Add Haskell language to compiler_vm
This commit is contained in:
parent
88f6998b12
commit
c8f35ddb09
24
modules/compiler_vm/languages/haskell.pm
Executable file
24
modules/compiler_vm/languages/haskell.pm
Executable file
@ -0,0 +1,24 @@
|
|||||||
|
#!/usr/bin/env perl
|
||||||
|
|
||||||
|
use warnings;
|
||||||
|
use strict;
|
||||||
|
|
||||||
|
package haskell;
|
||||||
|
use parent '_default';
|
||||||
|
|
||||||
|
sub initialize {
|
||||||
|
my ($self, %conf) = @_;
|
||||||
|
|
||||||
|
$self->{sourcefile} = 'prog.hs';
|
||||||
|
$self->{execfile} = 'prog';
|
||||||
|
$self->{default_options} = '';
|
||||||
|
$self->{cmdline} = 'ghc -v0 $options -o $execfile $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";
|
||||||
|
}
|
||||||
|
|
||||||
|
1;
|
9
modules/compiler_vm/languages/server/haskell.pm
Executable file
9
modules/compiler_vm/languages/server/haskell.pm
Executable file
@ -0,0 +1,9 @@
|
|||||||
|
#!/usr/bin/perl
|
||||||
|
|
||||||
|
use warnings;
|
||||||
|
use strict;
|
||||||
|
|
||||||
|
package haskell;
|
||||||
|
use parent '_c_base';
|
||||||
|
|
||||||
|
1;
|
Loading…
x
Reference in New Issue
Block a user