7 lines
183 B
C++
7 lines
183 B
C++
// SPDX-FileCopyrightText: The Eigen Authors
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
Array<int, 1, 6> a(1, 2, 3, 4, 5, 6);
|
|
Array<int, 3, 1> b{1, 2, 3};
|
|
cout << a << "\n\n" << b << endl;
|