Using @ISA and strict

chris Blog
0

Ok, In Perl we use the following code to make a sub class of a class. @ISA = (inherited class); However if you are using strict like below, package MySubClass; use strict; @ISA = qw( MyClass ); … you will get the error Global symbol “@ISA” requires explicit package name (did you forget to declare… continue reading »