Help for this page

Select Code to Download


  1. or download this
    $ perl -e '@c=(A..Z,a..z);print $c[rand(scalar@c)|0]'
    F$
    
  2. or download this
    sub letter { ('A'..'Z','a'..'z')[rand(52)] }
    sub city { join '', map {letter()} 1..10 + int rand 30 }