Help for this page

Select Code to Download


  1. or download this
    sub iknow {
       if ( @_ > 1 ) {
          print "I know about ",
    ...
          print "I don't know bout nuthin.\n";
       }
    }
    
  2. or download this
     my @array = ( one, two, three, four, five );
    
    iknow( @array[1, 3, 5] );