Dave Cross: Still Munging Data With Perl: Online event - Mar 17 Learn more
123456789 use strict; use warnings;package RPerl::Object;# an object is an individual instance of a class; it could be a blessed hash ref in Perl or a C++ classpackage object;our @ISA = ('RPerl::Object');# RPerl Object, no inheritance from RPerl or RPerl::CompileUnit::Module::Class1;
use
strict;
warnings;
package
RPerl::Object;
# an object is an individual instance of a class; it could be a blessed hash ref in Perl or a C++ class
object;
our
@ISA
= (
'RPerl::Object'
);
# RPerl Object, no inheritance from RPerl or RPerl::CompileUnit::Module::Class
1;