Help for this page

Select Code to Download


  1. or download this
    $ perl -le '$_ = join "-", %h = (1,2,3,4,1,2,3,4); print "yes" if /--/
    +'
    yes
    
  2. or download this
    map { $_ } %h = ( 1,1, 1,1 );    # no undefined values. 
    grep { 1 } %h = ( 1,1, 1,1 );    # undefs occur.
    sort %h = ( 1,1, 1,1 );          # undefs occur.
    reverse %h = ( 1,1, 1,1 );       # undefs occur.