Help for this page

Select Code to Download


  1. or download this
      DB<106> sub tst {return undef}
    
      DB<107> print "true" if ( @list=tst() )
    true
    
  2. or download this
      DB<108> sub tst {return}
    
      DB<109> print "true" if ( @list=tst() )
    
      DB<110>