animal = %w { ant bee cat dog elk}

animal.each {|w| puts w}

def  wrap &b
  print "Santa Says" 
  3.times(&b)
  print "\n" 
end

wrap {print "Ho! "}