Help for this page

Select Code to Download


  1. or download this
    foreach ( glob( "{a,b,c,d}" x 10 ) )
    {
        print "$_\n";
        last;
    }
    
  2. or download this
    foreach ( 'aaaaaaaaaa'..'dddddddddd' )
    {
        print "$_\n";
        last;
    }