6 lines
135 B
C++
6 lines
135 B
C++
// SPDX-FileCopyrightText: The Eigen Authors
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
ArrayXXi a{{1, 2, 3}, {3, 4, 5}};
|
|
cout << a << endl;
|