# File scrabble.rb, line 116
  def initialize dic_source
    super()
    dic_source.each_line do |line|
      next if not line =~ /^[A-Za-z]+(\/\w+)?$/
      word = line.downcase.split('/').first.strip
      next if word.length > Board::SIZE
      add(word)
    end
  end