func int main() {
  matrix a <2, 3>;
  matrix b <3, 2>;
  a = [1.1, 2.1, 3.1; 1.0, 2.0, 3.0];
  b = a';
  print(b);
  return 0;
}
