Exclude echo()

This commit is contained in:
RonaldoCMP 2020-08-11 15:36:44 +01:00 committed by GitHub
parent 2e9d87f584
commit b6085e0cbc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -476,7 +476,6 @@ module test_array_dim() {
}
test_array_dim();
echo(transpose([[1,2,3],[4,5,6]],reverse=true));
module test_transpose() {
assert(transpose([[1,2,3],[4,5,6],[7,8,9]]) == [[1,4,7],[2,5,8],[3,6,9]]);