What is the proper syntax/code to include a Module into another Module? My attempt below is not working. --Brian module Foo def xxx; "this is xxx" end end module Enumerable include Foo end puts [].xxx #does not work, xxx not defined for Array. Array includes Enumerable, right?