# File src/rubydice_doc.rb, line 23
  def toss
    @top = 1
    5.times {
      @top += 1 if rand(2) == 0
    }
  end