# File lib/facet/string/rand_letter.rb, line 10
  def String.rand_letter
    (rand(26) + (rand(2) == 0 ? 65 : 97) ).chr
  end