func int main() {
  matrix a <2, 2>;
  double b;
  a = [1.0, 2.0; 3.0, 4.0];
  b = 2.0;
  print(b * a);
  print(a * b);
  return 0;
}