Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
        no strict 'refs';
        print "line", $$var, "\n";
    }
    
  2. or download this
    use strict;
    use warnings;
    ...
    for (my $i = 0; $i < @KPI; $i++) {
        print "line", $KPI[$i], "\n";
    }