main
1module Helpers  
2    def include?(thing)
3      match = false
4      each do |t|
5        match = true if t == thing
6      end
7      match
8    end
9end