exec 'go', qw/build -compiler gc/, $name when 'GOLANG';
exec 'go', qw/build -compiler gccgo/, $name, when 'GCCGO';
exec 'ghc', qw/-DONLINE_JUDGE -Wall -O2 -o/, $basename, $name when 'HASKELL';
- when ('SBCL') {
- system 'sbcl', '--noinform', '--eval', qq/(compile-file "$name")/, '--quit' and die "sbcl failed: errno=$! return=$?";
- rename "$basename.fasl", $basename;
- chmod 0755, $basename;
- exit
- }
- when ([qw/PERL PYTHON/]){
+ when ([qw/PERL PYTHON SBCL/]){
open IN, '<', $name;
open OUT, '>', $basename;
- print OUT "#!/usr/bin/perl\n" if $_ eq 'PERL';
- print OUT "#!/usr/bin/python\n" if $_ eq 'PYTHON';
+ print OUT "#!/usr/bin/perl\n" if $_ eq 'PERL';
+ print OUT "#!/usr/bin/python\n" if $_ eq 'PYTHON';
+ print OUT "#!/usr/bin/sbcl --script\n" if $_ eq 'SBCL';
print OUT while <IN>;
close OUT;
close IN;