# File lib/modai_prct12/matrizDSL.rb, line 37
        def operand(other)
                
                                
                if(@matA == nil)
                        @matA = other
                else
                        @matB = other
                end
                             
                execute
                
        end