Help for this page

Select Code to Download


  1. or download this
    push (@request, ($sysDescr,$sysUpTime));
    
  2. or download this
    my @request = ($sysDescr, $sysUpTime);
    
  3. or download this
    use strict;
    use warnings;
    
  4. or download this
    use diagnostics;
    
  5. or download this
    use autodie;
    
  6. or download this
    #!/usr/bin/env perl -l
    
    ...
    print "\n";
    print 'SAME: $array_ref_1 and $array_ref_1_new and $array_ref_ref->[0]
    +';
    print "SAME: $array_ref_1 and $array_ref_1_new and $array_ref_ref->[0]
    +";
    
  7. or download this
    *** $array_ref_1  = \@array ***
    $VAR1 = [
    ...
    
    SAME: $array_ref_1 and $array_ref_1_new and $array_ref_ref->[0]
    SAME: ARRAY(0x7fa0f202a628) and ARRAY(0x7fa0f202a628) and ARRAY(0x7fa0
    +f202a628)