mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
12 lines
140 B
C
12 lines
140 B
C
#include "Test-Field.H"
|
|
|
|
int main()
|
|
{
|
|
Vector<double> v1(1, 2);
|
|
Vector<double> v2(2, 3);
|
|
|
|
std::cout << v1 + v2;
|
|
|
|
return 0;
|
|
}
|