This repository has been archived on 2026-03-28. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
eodev/eo/test/t-eo.cpp
2000-07-18 11:30:39 +00:00

23 lines
598 B
C++

//-----------------------------------------------------------------------------
// t-eo.cpp
//-----------------------------------------------------------------------------
#include <eo> // EO
//-----------------------------------------------------------------------------
typedef EO<float> Chrom;
//-----------------------------------------------------------------------------
int main()
{
Chrom chrom1, chrom2;
cout << "chrom1 = " << chrom1 << endl
<< "chrom2 = " << chrom2 << endl;
return 0;
}
//-----------------------------------------------------------------------------