classString# The inverse of <tt>String#include?</tt>. Returns true if the string# does not include the other string.## "hello".exclude? "lo" # => false# "hello".exclude? "ol" # => true# "hello".exclude? ?h # => falsedefexclude?(string)!include?(string)endend