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
# [[[ HEADER ]]]
use RPerl;
package MyModule;
use strict;
use warnings;
our $VERSION = 0.001_000;
# [[[ CRITICS ]]]
## no critic qw(ProhibitUselessNoCritic ProhibitMagicNumbers RequireCheckedSyscalls) # USER DEFAULT 1: allow numeric values & print operator
# [[[ SUBROUTINES ]]]
sub foo {
{ my void $RETURN_TYPE };
print "MyModule: foo()\n";
return;
}
1;
If I compile this, I get a warning:
$ rperl MyModule.pm
Use of uninitialized value in concatenation (.) or string at /home/hakon/perlbrew/perls/5.30.0-reloc/lib/site_perl/5.30.0/RPerl/Compiler.pm line 1503, <$FILE_HANDLE> line 9.
The text was updated successfully, but these errors were encountered:
Hello! I have this simple module:
If I compile this, I get a warning:
The text was updated successfully, but these errors were encountered: