class HighLine::Menu

def find_item_from_selection(items, selection)

def find_item_from_selection(items, selection)
  if selection =~ /^\d+$/ # is a number?
    get_item_by_number(items, selection)
  else
    get_item_by_letter(items, selection)
  end
end