Help for this page

Select Code to Download


  1. or download this
    #!/usr/local/bin/perl
    
    use strict;
    ...
    print '@slice == ['. join(', ', @slice). "]\n";
    print "\$multi == '$multi'\n" if defined $multi;
    print "\$multi == undef\n" if !defined $multi;
    
  2. or download this
    @slice == [1, 2, 12, 19, 26]
    $multi == undef