6 lines
144 B
C++
6 lines
144 B
C++
// SPDX-FileCopyrightText: The Eigen Authors
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
Array<int, Dynamic, 1> v{{1, 2, 3, 4, 5}};
|
|
cout << v << endl;
|