3

I have a Perl script that needs to run on both Perl 5 and Perl 6 environments. If using Perl6 I need to use "perl6::Form" while on Perl5 I need to use "Format".

This code works on both versions or perl without error:

BEGIN {
    if( $] ge 6){
        require Perl6::Form;
        Perl6::Form::->import();
    }
}

But I do not know how to "separate" the Perl6 code when running on Perl5.

if( $] ge 6){ # Perl6
    print form
    ...
    ...
} else { # perl5
    format STDOUT =
    ...
    ...
} 

This doesn't work cleanly as I get errors on Perl5:

Unquoted string "form" may clash with future reserved word at /usr/bin/script.pl line 628.
Name "main::form" used only once: possible typo at /usr/bin/script.pl line 641.

I've briefly looked at Text::CPP, but I don't want to have a dependency on a compiler being installed. Any suggestions would be appreciated.

15
  • 4
    I sense some confusion ... [Perl6::Form](search.cpan.org/perldoc Perl6::Form) is a Perl5 module ... I have basically ignored Perl6 so far ... so I am probably missing something ... Where did you get the idea that you could combine Perl5 and Perl6 code in the same source like that? I am curious. Aug 14, 2013 at 14:55
  • 1
    AFAIK, Perl5 and Perl6 are rather different languages. Could you please tell me where you got the idea that you can combine both of them in the same source file? Aug 14, 2013 at 15:05
  • 1
    Well I come from a C background, and we use preprocessor commands to make our code portable on many platforms. I was hoping I could do that with perl. Sounds like that's not possible.
    – Mark
    Aug 14, 2013 at 15:10
  • 10
    ok, C background example: When's the last time you mixed C and Java in the same source file?
    – ikegami
    Aug 14, 2013 at 15:11
  • 2
    Again, there's no such thing as perl6::Form
    – ikegami
    Aug 14, 2013 at 16:05

1 Answer 1

12

If using Perl6 I need to use "perl6::Form"

perl6::Form doesn't exist.

Perl6::Form is a Perl5 module that provides functionality similar to Perl6's form.

A Perl6 module would have no use for Perl6::Form even it could run it since it's part of the language.

But I do not know how to "separate" the Perl6 code when running on Perl5.

Perl6 is not a version of Perl5. Perl5 and Perl6 are completely different languages. (Perl5's latest version is currently 18.1) I don't see how you can think you can have a program executed by both.

The best way to separate a Perl5 program and a Perl6 program is to put them in different files. If you have a need to place them in the same file, you'll need to state that need for us to help you find an appropriate solution.

9
  • 1
    I wouldn't say they're completely different languages, but they're certainly different enough that mixing them in one source file is not likely to be worth the effort. I seem to recall that Perl6 originally had a design goal of being able to execute Perl5 code [citation needed], but I don't think that's been done, and I wouldn't count on it ever actually happening. Aug 14, 2013 at 17:15
  • 1
    @Keith Thompson, Java's syntax is about as similar to C's as Perl6's is to Perl5's. I call that completely different languages.
    – ikegami
    Aug 14, 2013 at 19:48
  • @Keith Thompson, The idea was to create an interpreter that could run Perl5 and Perl6 (i.e. Parrot). Perl6 wouldn't run Perl5 since Perl6 is not a program.
    – ikegami
    Aug 14, 2013 at 19:49
  • 2
    I call C and Klingon completely different languages, but I think we're agreed that they're different enough that writing code that's valid Perl5 and valid Perl6 would be a mere stunt rather than anything useful. Aug 14, 2013 at 19:54
  • 2
    @teodozjan, And you're wrong as to be being like C and C++. C is mostly a subset of C++, but Perl5 is not a subset of Perl6. You can't pretend that Perl5 code is Perl6 code like you can pretend C code is C++ code, and that was the whole point. You cannot have a piece of code be valid Perl5 and Perl6 code. Please reread the OP and refrain from further emotionally motivated, off-topic replies.
    – ikegami
    Aug 26, 2013 at 13:28

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.