mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
8 lines
95 B
Ruby
8 lines
95 B
Ruby
|
require 'matrix'
|
||
|
|
||
|
class MatrixSub < Matrix
|
||
|
def self.ins
|
||
|
rows([[1, 0], [0, 1]])
|
||
|
end
|
||
|
end
|