You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
helmut@helmuts-air:~/rperl$ perl -v
This is perl 5, version 20, subversion 1 (v5.20.1) built for darwin-2level
helmut@helmuts-air:~/rperl$ rperl -v
This is RPerl version 1.100_002, Long Date 20150911, Star Date 2015.254
v1.100_002 using RPerl's underscore-is-comma numbering scheme
v1.100002 using CPAN's underscore-is-beta numbering scheme
Example hello_world.pl
#!/usr/bin/perl
# Learning RPerl, Chapter 1, Exercise 1
# Print "Hello, world!"; the classic first program for new programmers
# [[[ HEADER ]]]
use RPerl;
use strict;
use warnings;
our $VERSION = 0.001_000;
# [[[ CRITICS ]]]
## no critic qw(ProhibitUselessNoCritic ProhibitMagicNumbers RequireCheckedSyscalls) # USER DEFAULT 1: allow numeric values & print operator
# [[[ OPERATIONS ]]]
print 'Hello, world!' . "\n";
Now we try:
helmut@helmuts-air:~/rperl$ rperl hello_world.pl
ERROR ECVCOFI01, COMPILER, SAVE OUTPUT FILES, MODULE TEMPLATE COPY: Received non-empty PMC source, dying
helmut@helmuts-air:~/rperl$ which rperl
/Users/helmut/perl5/perlbrew/perls/perl-5.20.1/bin/rperl
helmut@helmuts-air:~/rperl$ perl /Users/helmut/perl5/perlbrew/perls/perl-5.20.1/bin/rperl hello_world.pl
ERROR ECVCOFI01, COMPILER, SAVE OUTPUT FILES, MODULE TEMPLATE COPY: Received non-empty PMC source, dying
The text was updated successfully, but these errors were encountered:
Same on OSX and Debian, both under perlbrew
Example hello_world.pl
Now we try:
The text was updated successfully, but these errors were encountered: