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.
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.