Help for this page

Select Code to Download


  1. or download this
    foreach $n ( map { sprintf "%02d", $_ } 0..30 ) {
        # do stuff with $n
    }
    
  2. or download this
    my @list = map { sprintf "%02d", $_ } 0..99;