# File lib/rufus/mnemo.rb, line 146
    def Mnemo.is_mnemo_word (string)

      begin
        to_integer(string)
        true
      rescue #Exception => e
        false
      end
    end