Skip to content

Commit

Permalink
remove debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
lichtkind committed Oct 11, 2018
1 parent 417453f commit 091be42
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/Math/Matrix.pm6
Expand Up @@ -170,7 +170,6 @@ method !build_diagonal(Math::Matrix:D: --> List){
}

multi method submatrix(Math::Matrix:D: Int:D $row, Int:D $column --> Math::Matrix:D ){
say "-1";
self!check-index($row, $column);
my @rows = ^$!row-count; @rows.splice($row,1);
my @cols = ^$!column-count; @cols.splice($column,1);
Expand Down

0 comments on commit 091be42

Please sign in to comment.