2015-04-09 20:04:18 +02:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
|
2021-07-11 00:00:22 +02:00
|
|
|
# SPDX-FileCopyrightText: 2021 Pragmatic Software <pragma78@gmail.com>
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
2015-04-09 20:04:18 +02:00
|
|
|
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;
|