Help for this page

Select Code to Download


  1. or download this
    # original example, 58 chars
    
    perl -e 'print join(" ", map { sprintf("%03u", $_) } (2..20)), "\n"'
    
  2. or download this
    # my golf score: 45 chars
    
    perl -e 'print((map{sprintf("%03u ",$_)}(2..20)),"\n")'