# File lib/rufus/mnemo.rb, line 123
    def Mnemo.to_number (syllable)

      SYL.each_with_index do |s, index|
        return index if syllable == s
      end
      raise "did not find syllable '#{syllable}'"
    end