module M; end module N; end class C include M include N end C.ancestors #=> [C,N,M,Object,Kernel,BasicObject]
请注意,mixins不是多重继承,而是大部分不需要它.