Files
OpenFOAM-6/applications/test/Field/Test-Field.C
2014-12-10 22:40:10 +00:00

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