OpenFOAM-2.4.x/applications/test/Field/Test-Field.C
2014-02-17 16:00:08 +00:00

11 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;
}