Help for this page

Select Code to Download


  1. or download this
      DB<16> @array =()
    
    ...
    
      DB<20> x @x
    0  undef                                   # WTF
    
  2. or download this
      DB<1> @x = (1..3,0,undef,1..3)
    
    ...
    
      DB<5> while (my $x = shift @x) { print "$x," }
    1,2,3,