Help for this page

Select Code to Download


  1. or download this
    sub get_var{
       my ($self, $var_name) = @_;
       return eval "\$$var_name";
    }
    
  2. or download this
    sub get_var{
       my ($self, $var_name) = @_;
       return $self->{eval "\$$var_name"};
    }
    
  3. or download this
    #!/usr/bin/perl -wl
    use strict;
    ...
    
    print $p->get_class_var('var1');    # -> foo
    print $p->get_inst_var( 'var1');    # -> bar