Ruby - Modules and Mixins
Identify the error in this Ruby code that tries to use a module for multiple inheritance:
module Swimmable
def swim
"Swimming"
end
end
class Animal
include Swimmable
include Flyable
end