mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +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;
|
|
}
|